mirror of
https://github.com/cryb-to/cryb-to.git
synced 2024-11-15 02:05:40 +00:00
Neither AES nor DES have keystream functions.
This commit is contained in:
parent
5c98dc1084
commit
a8f0cc2e69
2 changed files with 0 additions and 3 deletions
|
@ -43,7 +43,6 @@ CRYB_BEGIN
|
|||
#define aes_cipher cryb_aes_cipher
|
||||
#define aes_ctx cryb_aes_ctx
|
||||
#define aes_init cryb_aes_init
|
||||
#define aes_keystream cryb_aes_keystream
|
||||
#define aes_encrypt cryb_aes_encrypt
|
||||
#define aes_decrypt cryb_aes_decrypt
|
||||
#define aes_finish cryb_aes_finish
|
||||
|
@ -59,7 +58,6 @@ typedef struct {
|
|||
} aes_ctx;
|
||||
|
||||
void aes_init(aes_ctx *, cipher_mode mode, const uint8_t *, size_t);
|
||||
size_t aes_keystream(aes_ctx *, uint8_t *, size_t);
|
||||
size_t aes_encrypt(aes_ctx *, const void *, uint8_t *, size_t);
|
||||
size_t aes_decrypt(aes_ctx *, const uint8_t *, void *, size_t);
|
||||
void aes_finish(aes_ctx *);
|
||||
|
|
|
@ -46,7 +46,6 @@ CRYB_BEGIN
|
|||
#define des268_cipher cryb_des168_cipher
|
||||
#define des_ctx cryb_des_ctx
|
||||
#define des_init cryb_des_init
|
||||
#define des_keystream cryb_des_keystream
|
||||
#define des_encrypt cryb_des_encrypt
|
||||
#define des_decrypt cryb_des_decrypt
|
||||
#define des_finish cryb_des_finish
|
||||
|
|
Loading…
Reference in a new issue