diff options
author | MITSUNARI Shigeo <[email protected]> | 2023-12-19 16:36:41 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2023-12-19 16:36:41 +0900 |
commit | cd5231de096408cb82c747761e55d80188ac639b (patch) | |
tree | dfa8d9a7dbf01e86cfccbb301317645654695a96 /test | |
parent | fcb3d0dbb8ff30601547539de8fb47620f164f37 (diff) | |
download | xbyak-cd5231de096408cb82c747761e55d80188ac639b.tar.gz xbyak-cd5231de096408cb82c747761e55d80188ac639b.zip |
add aesdec256kl
Diffstat (limited to 'test')
-rw-r--r-- | test/apx.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/apx.cpp b/test/apx.cpp index 89760cb..fc29653 100644 --- a/test/apx.cpp +++ b/test/apx.cpp @@ -1782,11 +1782,19 @@ CYBOZU_TEST_AUTO(aeskl) { aesdec128kl(xmm15, ptr[rax+rcx*4+0x12]); aesdec128kl(xmm15, ptr[r30+r29*8+0x34]); + + + aesdec256kl(xmm15, ptr[rax+rcx*4+0x12]); + aesdec256kl(xmm15, ptr[r30+r29*8+0x34]); } } c; const uint8_t tbl[] = { + // aesdec128kl 0xf3, 0x44, 0x0f, 0x38, 0xdd, 0x7c, 0x88, 0x12, 0x62, 0x1c, 0x7a, 0x08, 0xdd, 0x7c, 0xee, 0x34, + // aesdec256kl + 0xf3, 0x44, 0x0f, 0x38, 0xdf, 0x7c, 0x88, 0x12, + 0x62, 0x1c, 0x7a, 0x08, 0xdf, 0x7c, 0xee, 0x34, }; const size_t n = sizeof(tbl); CYBOZU_TEST_EQUAL(c.getSize(), n); |