Home | History | Annotate | Download | only in crypto

Lines Matching defs:HMAC

5 #include "crypto/hmac.h"
22 // Implementation of HMAC-SHA-256:
25 // Windows XP SP2, so unfortunately we have to implement HMAC-SHA-256 here.
44 // See FIPS 198: The Keyed-Hash Message Authentication Code (HMAC).
102 // For HMAC-SHA-256 only.
106 HMAC::HMAC(HashAlgorithm hash_alg)
112 bool HMAC::Init(const unsigned char* key, size_t key_length) {
114 // Init must not be called more than once on the same HMAC object.
166 HMAC::~HMAC() {
169 bool HMAC::Sign(const base::StringPiece& data,