nrfxlib API 2.8.99
|
void ocrypto_aes_gcm_encrypt | ( | uint8_t * | ct, |
uint8_t * | tag, | ||
size_t | tag_len, | ||
const uint8_t * | pt, | ||
size_t | pt_len, | ||
const uint8_t * | key, | ||
size_t | size, | ||
const uint8_t | iv[12], | ||
const uint8_t * | aa, | ||
size_t | aa_len ) |
#include <crypto/nrf_oberon/include/ocrypto_aes_gcm.h>
AES-GCM encryption.
[out] | ct | Ciphertext. |
[out] | tag | Authentication tag. |
tag_len | Authentication tag length, 0 < tag_len <= 16. | |
pt | Plaintext. | |
pt_len | Plaintext length, 0 < ct_len < 2^36-32 bytes. | |
key | AES key. | |
size | Key size (16, 24, or 32 bytes). | |
iv | Initial vector. | |
aa | Additional authentication data. | |
aa_len | Additional authentication data length, 0 < aa_len < 2^61 bytes. |
ct
may be same as pt
.