You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In include/polarssl/cipher.h a cipher_id_t value is defined for POLARSSL_CIPHER_ID_3DES but it is actually never used.
I would have expected it to be used in library/cipher_wrap.c by des_ede3_info but that uses POLARSSL_CIPHER_ID_DES instead.
I'm not entirely sure if it can safely be omitted (from the header file) or changed. If not, it might be convenient to mark it as /* Unused! */.
The text was updated successfully, but these errors were encountered:
In
include/polarssl/cipher.h
acipher_id_t value
is defined forPOLARSSL_CIPHER_ID_3DES
but it is actually never used.I would have expected it to be used in
library/cipher_wrap.c
bydes_ede3_info
but that usesPOLARSSL_CIPHER_ID_DES
instead.I'm not entirely sure if it can safely be omitted (from the header file) or changed. If not, it might be convenient to mark it as
/* Unused! */
.The text was updated successfully, but these errors were encountered: