Static ring::aead::AES_128_GCM [] [src]

pub static AES_128_GCM: Algorithm = aead::Algorithm{key_len: AES_128_KEY_LEN,
                init: aes_gcm_init,
                seal: aes_gcm_seal,
                open: aes_gcm_open,}

AES-128 in GCM mode with 128-bit tags and 96 bit nonces.

C analog: EVP_aead_aes_128_gcm

Go analog: crypto.aes