Go to the source code of this file.
|
|
typedef word32 | KEY_TABLE_TYPE[CAMELLIA_TABLE_WORD_LEN] |
| |
|
typedef struct Camellia | Camellia |
| |
|
| WOLFSSL_API int | wc_CamelliaSetKey (Camellia *cam, const byte *key, word32 len, const byte *iv) |
| | This function sets the key and initialization vector for a camellia object, initializing it for use as a cipher. More...
|
| |
| WOLFSSL_API int | wc_CamelliaSetIV (Camellia *cam, const byte *iv) |
| | This function sets the initialization vector for a camellia object. More...
|
| |
| WOLFSSL_API int | wc_CamelliaEncryptDirect (Camellia *cam, byte *out, const byte *in) |
| | This function does a one-block encrypt using the provided camellia object. It parses the first 16 byte block from the buffer in and stores the encrypted result in the buffer out. Before using this function, one should initialize the camellia object using wc_CamelliaSetKey. More...
|
| |
| WOLFSSL_API int | wc_CamelliaDecryptDirect (Camellia *cam, byte *out, const byte *in) |
| | This function does a one-block decrypt using the provided camellia object. It parses the first 16 byte block from the buffer in, decrypts it, and stores the result in the buffer out. Before using this function, one should initialize the camellia object using wc_CamelliaSetKey. More...
|
| |
| WOLFSSL_API int | wc_CamelliaCbcEncrypt (Camellia *cam, byte *out, const byte *in, word32 sz) |
| | This function encrypts the plaintext from the buffer in and stores the output in the buffer out. It performs this encryption using Camellia with Cipher Block Chaining (CBC). More...
|
| |
| WOLFSSL_API int | wc_CamelliaCbcDecrypt (Camellia *cam, byte *out, const byte *in, word32 sz) |
| | This function decrypts the ciphertext from the buffer in and stores the output in the buffer out. It performs this decryption using Camellia with Cipher Block Chaining (CBC). More...
|
| |
Initial value:{
#endif
enum {
CAMELLIA_BLOCK_SIZE = 16
}