MCPcopy Create free account
hub / github.com/Meituan-Dianping/SQLAdvisor / HMAC_MD5

Class HMAC_MD5

extra/yassl/include/crypto_wrapper.hpp:121–136  ·  view source on GitHub ↗

HMAC_MD5

Source from the content-addressed store, hash-verified

119
120// HMAC_MD5
121class HMAC_MD5 : public Digest {
122public:
123 void get_digest(byte*);
124 void get_digest(byte*, const byte*, unsigned int);
125 void update(const byte*, unsigned int);
126 uint get_digestSize() const;
127 uint get_padSize() const;
128 HMAC_MD5(const byte*, unsigned int);
129 ~HMAC_MD5();
130private:
131 struct HMAC_MD5Impl;
132 HMAC_MD5Impl* pimpl_;
133
134 HMAC_MD5(const HMAC_MD5&);
135 HMAC_MD5& operator=(const HMAC_MD5&);
136};
137
138
139// HMAC_SHA-1

Callers 2

p_hashFunction · 0.85
TLS_hmacFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected