![]() |
Signet Forge 0.1.0
C++20 Parquet library with AI-native extensions
|
DEMO |
Functions | |
| expected< std::vector< uint8_t > > | wrap (const std::array< uint8_t, 32 > &kek, const std::vector< uint8_t > &plaintext) |
| AES Key Wrap — wraps plaintext key material under a KEK. | |
| expected< std::vector< uint8_t > > | unwrap (const std::array< uint8_t, 32 > &kek, const std::vector< uint8_t > &ciphertext) |
| AES Key Unwrap — recovers plaintext key material from wrapped form. | |
|
inline |
AES Key Unwrap — recovers plaintext key material from wrapped form.
| kek | 256-bit Key Encryption Key |
| ciphertext | Wrapped key (must be multiple of 8 bytes, >= 24) |
Definition at line 118 of file hsm_client_stub.hpp.
|
inline |
AES Key Wrap — wraps plaintext key material under a KEK.
| kek | 256-bit Key Encryption Key |
| plaintext | Key material to wrap (must be multiple of 8 bytes, >= 16) |
Definition at line 63 of file hsm_client_stub.hpp.