Searched refs:KeyHex (Results 1 – 5 of 5) sorted by relevance
/external/boringssl/src/util/fipstools/acvp/acvptool/subprocess/ |
D | block.go | 56 iteration.KeyHex = hex.EncodeToString(key) 88 iteration.KeyHex = hex.EncodeToString(key) 258 KeyHex string `json:"key"` 280 KeyHex string `json:"key,omitempty"` member 349 if len(test.KeyHex) == 0 && len(test.Key1Hex) > 0 { 351 test.KeyHex = test.Key1Hex + test.Key2Hex + test.Key3Hex 354 if len(test.KeyHex) != keyBytes*2 { 355 … of length %d, but expected %d-bit key", group.ID, test.ID, test.KeyHex, len(test.KeyHex), group.K… 358 key, err := hex.DecodeString(test.KeyHex)
|
D | hmac.go | 39 KeyHex string `json:"key"` 106 if len(test.KeyHex)*4 != group.KeyBits { 107 …of length %d but specifies a bit length of %d", group.ID, test.ID, len(test.KeyHex), group.KeyBits) 109 key, err := hex.DecodeString(test.KeyHex)
|
D | xts.go | 39 KeyHex string `json:"key"` 91 if group.KeyLen != len(test.KeyHex)*4/2 { 92 …e twice the length of the underlying key size)", group.ID, test.ID, len(test.KeyHex), group.KeyLen) 94 key, err := hex.DecodeString(test.KeyHex)
|
D | aead.go | 45 KeyHex string `json:"key"` 105 if len(test.KeyHex) != keyBytes*2 { 106 … of length %d, but expected %d-bit key", group.ID, test.ID, test.KeyHex, len(test.KeyHex), group.K… 109 key, err := hex.DecodeString(test.KeyHex)
|
D | keyedMac.go | 39 KeyHex string `json:"key"` 96 if keyBits := uint32(len(test.KeyHex)) * 4; keyBits != group.KeyBits { 114 key, err := hex.DecodeString(test.KeyHex)
|