mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 11:45:42 +01:00
Remove unused member in des_context
This commit is contained in:
parent
d1a82603ad
commit
e45dba47b5
@ -96,6 +96,7 @@ Semi-API changes (technically public, morally private)
|
||||
* Remove sig_oid2 and rename sig_oid1 to sig_oid in x509_crt and x509_crl.
|
||||
* x509_crt.key_usage changed from unsigned char to unsigned int.
|
||||
* Remove r and s from ecdsa_context
|
||||
* Remove mode from des_context and des3_context
|
||||
|
||||
Default behavior changes
|
||||
* The default minimum TLS version is now TLS 1.0.
|
||||
|
@ -53,7 +53,6 @@ extern "C" {
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
int mode; /*!< encrypt/decrypt */
|
||||
uint32_t sk[32]; /*!< DES subkeys */
|
||||
}
|
||||
mbedtls_des_context;
|
||||
@ -63,7 +62,6 @@ mbedtls_des_context;
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
int mode; /*!< encrypt/decrypt */
|
||||
uint32_t sk[96]; /*!< 3DES subkeys */
|
||||
}
|
||||
mbedtls_des3_context;
|
||||
|
Loading…
Reference in New Issue
Block a user