aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/pk_algs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pubkey/pk_algs.h')
-rw-r--r--src/pubkey/pk_algs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pubkey/pk_algs.h b/src/pubkey/pk_algs.h
index a1e65cb3d..d8f24a1b8 100644
--- a/src/pubkey/pk_algs.h
+++ b/src/pubkey/pk_algs.h
@@ -13,10 +13,10 @@
namespace Botan {
Public_Key* make_public_key(const AlgorithmIdentifier& alg_id,
- const MemoryRegion<byte>& key_bits);
+ const secure_vector<byte>& key_bits);
Private_Key* make_private_key(const AlgorithmIdentifier& alg_id,
- const MemoryRegion<byte>& key_bits,
+ const secure_vector<byte>& key_bits,
RandomNumberGenerator& rng);
}