aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests
diff options
context:
space:
mode:
authorDaniel Wyatt <[email protected]>2017-05-25 22:15:48 -0400
committerDaniel Wyatt <[email protected]>2017-05-25 22:15:48 -0400
commitda5871a12ca8f5031b1945e3fcca88921ae8ebd8 (patch)
tree4ab3cf5feb08073f761804841d869b4a768c1a6a /src/tests
parentd8fc6ff06f955358286973e05142dc6c5066f2b8 (diff)
Add botan_hash_copy_state FFI function.
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/test_ffi.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/tests/test_ffi.cpp b/src/tests/test_ffi.cpp
index 624b01032..cf97dd947 100644
--- a/src/tests/test_ffi.cpp
+++ b/src/tests/test_ffi.cpp
@@ -131,6 +131,26 @@ class FFI_Unit_Tests : public Test
result.test_eq("SHA-256 output", outbuf, "B5D4045C3F466FA91FE2CC6ABE79232A1A57CDF104F7A26E716E0A1E2789DF78");
}
+ // Test botan_hash_copy_state
+ const char *msg = "message digest";
+ const char *expected = "F7846F55CF23E14EEBEAB5B4E1550CAD5B509E3348FBC4EFA3A1413D393CB650";
+ TEST_FFI_OK(botan_hash_clear, (hash));
+ TEST_FFI_OK(botan_hash_update, (hash, reinterpret_cast<const uint8_t*>(&msg[0]), 1));
+ botan_hash_t fork;
+ if (TEST_FFI_OK(botan_hash_copy_state, (&fork, hash)))
+ {
+ TEST_FFI_OK(botan_hash_update, (fork, reinterpret_cast<const uint8_t*>(&msg[1]), std::strlen(msg) - 2));
+
+ TEST_FFI_OK(botan_hash_update, (hash, reinterpret_cast<const uint8_t*>(&msg[1]), std::strlen(msg) - 1));
+ TEST_FFI_OK(botan_hash_final, (hash, outbuf.data()));
+ result.test_eq("hashing split", outbuf, expected);
+
+ TEST_FFI_OK(botan_hash_update, (fork, reinterpret_cast<const uint8_t*>(&msg[std::strlen(msg)-1]), 1));
+ TEST_FFI_OK(botan_hash_final, (fork, outbuf.data()));
+ result.test_eq("hashing split", outbuf, expected);
+
+ TEST_FFI_OK(botan_hash_destroy, (fork));
+ }
}
TEST_FFI_OK(botan_hash_destroy, (hash));