mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-25 20:25:53 +01:00
- Integrated comments for CBC mode into 0.11 branch
This commit is contained in:
parent
1569ad872e
commit
c0983aabe4
@ -1,5 +1,9 @@
|
|||||||
PolarSSL ChangeLog
|
PolarSSL ChangeLog
|
||||||
|
|
||||||
|
= Version 0.11.1 released on 2009-05-17
|
||||||
|
* Fixed missing functionality for SHA-224, SHA-256, SHA384,
|
||||||
|
SHA-512 in rsa_pkcs1_sign()
|
||||||
|
|
||||||
= Version 0.11.0 released on 2009-05-03
|
= Version 0.11.0 released on 2009-05-03
|
||||||
* Fixed a bug in mpi_gcd() so that it also works when both
|
* Fixed a bug in mpi_gcd() so that it also works when both
|
||||||
input numbers are even and added testcases to check
|
input numbers are even and added testcases to check
|
||||||
|
@ -73,6 +73,8 @@ void aes_crypt_ecb( aes_context *ctx,
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief AES-CBC buffer encryption/decryption
|
* \brief AES-CBC buffer encryption/decryption
|
||||||
|
* Length should be a multiple of the block
|
||||||
|
* size (16 bytes)
|
||||||
*
|
*
|
||||||
* \param ctx AES context
|
* \param ctx AES context
|
||||||
* \param mode AES_ENCRYPT or AES_DECRYPT
|
* \param mode AES_ENCRYPT or AES_DECRYPT
|
||||||
@ -89,7 +91,7 @@ void aes_crypt_cbc( aes_context *ctx,
|
|||||||
unsigned char *output );
|
unsigned char *output );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief AES-CFB128 buffer encryption/decryption
|
* \brief AES-CFB128 buffer encryption/decryption.
|
||||||
*
|
*
|
||||||
* \param ctx AES context
|
* \param ctx AES context
|
||||||
* \param mode AES_ENCRYPT or AES_DECRYPT
|
* \param mode AES_ENCRYPT or AES_DECRYPT
|
||||||
|
@ -72,6 +72,8 @@ void camellia_crypt_ecb( camellia_context *ctx,
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief CAMELLIA-CBC buffer encryption/decryption
|
* \brief CAMELLIA-CBC buffer encryption/decryption
|
||||||
|
* Length should be a multiple of the block
|
||||||
|
* size (16 bytes)
|
||||||
*
|
*
|
||||||
* \param ctx CAMELLIA context
|
* \param ctx CAMELLIA context
|
||||||
* \param mode CAMELLIA_ENCRYPT or CAMELLIA_DECRYPT
|
* \param mode CAMELLIA_ENCRYPT or CAMELLIA_DECRYPT
|
||||||
|
Loading…
Reference in New Issue
Block a user