Home
last modified time | relevance | path

Searched defs:EncryptThenAuthenticate (Results 1 – 3 of 3) sorted by relevance

/external/tink/go/aead/subtle/
Dencrypt_then_authenticate.go31 type EncryptThenAuthenticate struct { struct
32 indCPACipher INDCPACipher
33 mac tink.MAC
34 tagSize int
67 func (e *EncryptThenAuthenticate) Encrypt(plaintext, associatedData []byte) ([]byte, error) {
93 func (e *EncryptThenAuthenticate) Decrypt(ciphertext, associatedData []byte) ([]byte, error) {
/external/tink/java_src/src/main/java/com/google/crypto/tink/subtle/
DEncryptThenAuthenticate.java37 public final class EncryptThenAuthenticate implements Aead { class
42 public EncryptThenAuthenticate(final IndCpaCipher cipher, final Mac mac, int macLength) { in EncryptThenAuthenticate() method in EncryptThenAuthenticate
/external/tink/cc/subtle/
Dencrypt_then_authenticate.h64 EncryptThenAuthenticate(std::unique_ptr<IndCpaCipher> ind_cpa_cipher, in EncryptThenAuthenticate() function