Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Wim Lewis
nettle
Commits
b4c4e860
Commit
b4c4e860
authored
Sep 09, 2001
by
Niels Möller
Browse files
* testsuite/cbc-test.m4: New testcase.
Rev: src/nettle/testsuite/cbc-test.m4:1.1
parent
c6b4dce5
Changes
1
Hide whitespace changes
Inline
Side-by-side
testsuite/cbc-test.m4
0 → 100644
View file @
b4c4e860
#include "aes.h"
#include "cbc.h"
BEGIN_TEST
struct CBC_CTX(struct aes_ctx, AES_BLOCK_SIZE) ctx;
uint8_t msg[2 * AES_BLOCK_SIZE] = "Listen, I'll say this only once!";
uint8_t cipher[2 * AES_BLOCK_SIZE];
uint8_t clear[2 * AES_BLOCK_SIZE];
uint8_t iv[AES_BLOCK_SIZE];
H(iv, "e9 a7 26 a0 44 7b 8d e6 03 83 60 de ea d5 b0 4e");
aes_set_key(&ctx.ctx, 32, H("8d ae 93 ff fc 78 c9 44"
"2a bd 0c 1e 68 bc a6 c7"
"05 c7 84 e3 5a a9 11 8b"
"d3 16 aa 54 9b 44 08 9e"));
CBC_SET_IV(&ctx, iv);
CBC_ENCRYPT(&ctx, aes_encrypt, 2 * AES_BLOCK_SIZE, cipher, msg);
if (!MEMEQ(2 * AES_BLOCK_SIZE, cipher, H("1f 94 fc 85 f2 36 21 06"
"4a ea e3 c9 cc 38 01 0e"
"7b f6 5f c5 02 59 2e 71"
"af bf 34 87 c0 36 2a 16")))
FAIL;
if (!MEMEQ(AES_BLOCK_SIZE, ctx.iv, cipher + AES_BLOCK_SIZE))
FAIL;
CBC_SET_IV(&ctx, iv);
CBC_DECRYPT(&ctx, aes_decrypt, 2 * AES_BLOCK_SIZE, clear, cipher);
if (!MEMEQ(2 * AES_BLOCK_SIZE, msg, clear))
FAIL;
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment