#include "beecrypt.h"
Go to the source code of this file.
Functions | |
int | blockEncryptECB (const blockCipher *bc, blockCipherParam *bp, uint32_t *dst, const uint32_t *src, unsigned int nblocks) |
This function encrypts a number of data blocks in Electronic Code Book mode. | |
int | blockDecryptECB (const blockCipher *bc, blockCipherParam *bp, uint32_t *dst, const uint32_t *src, unsigned int nblocks) |
This function decrypts a number of data blocks in Electronic Code Book mode. | |
int | blockEncryptCBC (const blockCipher *bc, blockCipherParam *bp, uint32_t *dst, const uint32_t *src, unsigned int nblocks) |
This function encrypts a number of data blocks in Cipher Block Chaining mode. | |
int | blockDecryptCBC (const blockCipher *bc, blockCipherParam *bp, uint32_t *dst, const uint32_t *src, unsigned int nblocks) |
This function decrypts a number of data blocks in Cipher Block Chaining mode. |
Definition in file blockmode.h.
|
This function decrypts a number of data blocks in Cipher Block Chaining mode.
|
|
This function decrypts a number of data blocks in Electronic Code Book mode.
|
|
This function encrypts a number of data blocks in Cipher Block Chaining mode.
|
|
This function encrypts a number of data blocks in Electronic Code Book mode.
|