aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/aes192ctr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/aes192ctr.cpp')
-rw-r--r--examples/aes192ctr.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/aes192ctr.cpp b/examples/aes192ctr.cpp
index ef4dde6..022bc33 100644
--- a/examples/aes192ctr.cpp
+++ b/examples/aes192ctr.cpp
@@ -19,16 +19,16 @@ int main()
{
try
{
- aesni::Block128 plaintext;
+ aesni::aes::Block plaintext;
make_default_plaintext(plaintext);
- aesni::Block192 key;
+ aesni::aes::Key192 key;
make_default_key(key);
- aesni::Block128 iv;
+ aesni::aes::Block iv;
make_default_iv(iv);
- aesni::KeySchedule192 encryption_schedule;
+ aesni::aes::RoundKeys192 encryption_schedule;
aesni_aes192_expand_key(&key, &encryption_schedule);
dump_encryption_schedule(encryption_schedule);