WebRTC Native M96 基础Base模块介绍之实用方法的封装(MD5Base64时间随机数)
Posted 一苇渡江694
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WebRTC Native M96 基础Base模块介绍之实用方法的封装(MD5Base64时间随机数)相关的知识,希望对你有一定的参考价值。
rtc_base message_digest
实现了多种类型的消息摘要算法,DIGEST_MD5、DIGEST_SHA_1、DIGEST_SHA_224、DIGEST_SHA_256、DIGEST_SHA_384、DIGEST_SHA_512[];
MD5:
MD5信息摘要算法(英语:MD5 Message-Digest Algorithm),一种被广泛使用的密码散列函数,可以产生出一个128位(16字节)的散列值(hash value),用于确保信息传输完整一致。
inline std::string MD5(const std::string& input)
return ComputeDigest(DIGEST_MD5, input);
std::string HA1 = MD5(sensitive);
ExplicitZeroMemory(sensitive, len);
delete[] sensitive;
std::string HA2 = MD5(A2);
std::string dig_response = MD5(HA1 + ":" + middle + ":" + HA2);
HMAC是密钥相关的哈希运算消息认证码(Hash-based Message Authentication Code)的缩写
使用:
size_t ret = rtc::ComputeHmac(rtc::DIGEST_SHA_1, key, keylen, buf.Data(),
msg_len_for_hmac
以上是关于WebRTC Native M96 基础Base模块介绍之实用方法的封装(MD5Base64时间随机数)的主要内容,如果未能解决你的问题,请参考以下文章
WebRTC Native M96 基础Base模块介绍之网络相关的封装
WebRTC Native M96 基础Base模块介绍之网络相关的封装
WebRTC Native M96 基础Base模块介绍之缓冲区相关的封装(CopyOnWriteBufferByteBufferWriterBitBufferWriterBufferTBuf
WebRTC Native M96 基础Base模块介绍之缓冲区相关的封装(CopyOnWriteBufferByteBufferWriterBitBufferWriterBufferTBuf
WebRTC Native M96 基础Base模块介绍之缓冲区相关的封装(CopyOnWriteBufferByteBufferWriterBitBufferWriterBufferTBuf