Searched refs:headerAndBody (Results 1 – 1 of 1) sorted by relevance
/external/ukey2/src/main/java/com/google/security/cryptauth/lib/securemessage/ |
D | SecureMessageBuilder.java | 148 byte[] headerAndBody = serializeHeaderAndBody( in buildSignedCleartextMessage() 150 return createSignedResult(signingKey, sigType, headerAndBody, associatedData); in buildSignedCleartextMessage() 215 byte[] headerAndBody = serializeHeaderAndBody(header, encryptedBody); in buildSignCryptedMessage() 216 return createSignedResult(signingKey, sigType, headerAndBody, associatedDataToBeSigned); in buildSignCryptedMessage() 268 Key signingKey, SigType sigType, byte[] headerAndBody, @Nullable byte[] associatedData) in createSignedResult() argument 271 CryptoOps.sign(sigType, signingKey, rng, CryptoOps.concat(headerAndBody, associatedData)); in createSignedResult() 273 .setHeaderAndBody(ByteString.copyFrom(headerAndBody)) in createSignedResult()
|