diff options
author | Jack Lloyd <[email protected]> | 2017-07-31 10:43:12 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-07-31 10:43:12 -0400 |
commit | 685c8c36efc4b1ef58ce8b41bb3a67edd8067144 (patch) | |
tree | cd487ff97ac4bc60cc7d4df2df016b56a1b93ab4 /src/lib/ffi/ffi.h | |
parent | 0ae811c61a029db82664ad1fd415182cdc9a9628 (diff) |
Add test for FFI keywrap, and constify args
Diffstat (limited to 'src/lib/ffi/ffi.h')
-rw-r--r-- | src/lib/ffi/ffi.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/ffi/ffi.h b/src/lib/ffi/ffi.h index 45cce37d2..7b14bdbd4 100644 --- a/src/lib/ffi/ffi.h +++ b/src/lib/ffi/ffi.h @@ -1057,13 +1057,13 @@ BOTAN_DLL int botan_x509_cert_allowed_usage(botan_x509_cert_t cert, unsigned int /** * Key wrapping as per RFC 3394 */ -BOTAN_DLL int botan_key_wrap3394(uint8_t key[], size_t key_len, - uint8_t kek[], size_t kek_len, +BOTAN_DLL int botan_key_wrap3394(const uint8_t key[], size_t key_len, + const uint8_t kek[], size_t kek_len, uint8_t wrapped_key[], size_t *wrapped_key_len); -BOTAN_DLL int botan_key_unwrap3394( uint8_t wrapped_key[], size_t wrapped_key_len, - uint8_t kek[], size_t kek_len, - uint8_t key[], size_t *key_len); +BOTAN_DLL int botan_key_unwrap3394(const uint8_t wrapped_key[], size_t wrapped_key_len, + const uint8_t kek[], size_t kek_len, + uint8_t key[], size_t *key_len); /* * TLS (WIP) |