aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cxx')
-rw-r--r--cxx/include/aesnixx/data.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/cxx/include/aesnixx/data.hpp b/cxx/include/aesnixx/data.hpp
index bd7e9bd..98b5c98 100644
--- a/cxx/include/aesnixx/data.hpp
+++ b/cxx/include/aesnixx/data.hpp
@@ -45,4 +45,14 @@ namespace aesni
{
return aesni_xor_block128(a, b);
}
+
+ inline Block128 reverse_byte_order(Block128& block)
+ {
+ return aesni_reverse_byte_order_block128(block);
+ }
+
+ inline Block128 inc(Block128& block)
+ {
+ return aesni_inc_block128(block);
+ }
}