Version
master
Description
file:keys.c
case TLS_ECDHE_PSK_WITH_AES_128_GCM_SHA256 :
ssl->specs.bulk_cipher_algorithm = wolfssl_aes_gcm;
ssl->specs.cipher_type = aead;
...
ssl->specs.iv_size = AES_IV_SIZE;
...
Whether the iv_size should be 4 bytes? So use AESGCM_IMP_IV_SZ?
Version
master
Description
file:keys.c
case TLS_ECDHE_PSK_WITH_AES_128_GCM_SHA256 :
ssl->specs.bulk_cipher_algorithm = wolfssl_aes_gcm;
ssl->specs.cipher_type = aead;
...
ssl->specs.iv_size = AES_IV_SIZE;
...
Whether the iv_size should be 4 bytes? So use AESGCM_IMP_IV_SZ?