Home
last modified time | relevance | path

Searched refs:hmacPrimitive (Results 1 – 2 of 2) sorted by relevance

/external/boringssl/src/util/fipstools/acvp/acvptool/subprocess/
Dsubprocess.go90 "HMAC-SHA-1": &hmacPrimitive{"HMAC-SHA-1", 20},
91 "HMAC-SHA2-224": &hmacPrimitive{"HMAC-SHA2-224", 28},
92 "HMAC-SHA2-256": &hmacPrimitive{"HMAC-SHA2-256", 32},
93 "HMAC-SHA2-384": &hmacPrimitive{"HMAC-SHA2-384", 48},
94 "HMAC-SHA2-512": &hmacPrimitive{"HMAC-SHA2-512", 64},
Dhmac.go56 type hmacPrimitive struct { struct
64 func (h *hmacPrimitive) hmac(msg []byte, key []byte, outBits int, m Transactable) []byte { argument
79 func (h *hmacPrimitive) Process(vectorSet []byte, m Transactable) (interface{}, error) { argument