diff options
Diffstat (limited to 'doc/kdf.txt')
-rw-r--r-- | doc/kdf.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/kdf.txt b/doc/kdf.txt index da916dcb3..4ab2fd5dc 100644 --- a/doc/kdf.txt +++ b/doc/kdf.txt @@ -11,19 +11,19 @@ shared secret created using Diffie-Hellman key agreement. .. cpp:class:: KDF - .. cpp:function:: SecureVector<byte> derive_key( \ - size_t key_len, const MemoryRegion<byte>& secret, \ + .. cpp:function:: secure_vector<byte> derive_key( \ + size_t key_len, const std::vector<byte>& secret, \ const std::string& salt = "") const - .. cpp:function:: SecureVector<byte> derive_key( \ - size_t key_len, const MemoryRegion<byte>& secret, \ - const MemoryRegion<byte>& salt) const + .. cpp:function:: secure_vector<byte> derive_key( \ + size_t key_len, const std::vector<byte>& secret, \ + const std::vector<byte>& salt) const - .. cpp:function:: SecureVector<byte> derive_key( \ - size_t key_len, const MemoryRegion<byte>& secret, \ + .. cpp:function:: secure_vector<byte> derive_key( \ + size_t key_len, const std::vector<byte>& secret, \ const byte* salt, size_t salt_len) const - .. cpp:function:: SecureVector<byte> derive_key( \ + .. cpp:function:: secure_vector<byte> derive_key( \ size_t key_len, const byte* secret, size_t secret_len, \ const std::string& salt) const |