aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/pubkey/dl_algo
diff options
context:
space:
mode:
authorRenĂ© Korthaus <[email protected]>2016-12-11 18:09:37 +0100
committerRenĂ© Korthaus <[email protected]>2016-12-11 18:14:22 +0100
commit90298cbaf7f1136850fec1eae778247ad66e38ad (patch)
treebb1f01c9d2acf44b1d1f4a40ca0f6a7a326ec1bb /src/lib/pubkey/dl_algo
parentf5189fbe1efe75182f3aebfd923c9769e3a874d7 (diff)
Public_Key derived class ctors take an std::vector<byte>
Changes all the Public_Key derived classes ctors to take a std::vector instead of a secure_vector for the DER encoded public key bits. There is no point in transporting a public key in secure storage. (GH #768)
Diffstat (limited to 'src/lib/pubkey/dl_algo')
-rw-r--r--src/lib/pubkey/dl_algo/dl_algo.cpp2
-rw-r--r--src/lib/pubkey/dl_algo/dl_algo.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/pubkey/dl_algo/dl_algo.cpp b/src/lib/pubkey/dl_algo/dl_algo.cpp
index baa8a66f4..8e885d318 100644
--- a/src/lib/pubkey/dl_algo/dl_algo.cpp
+++ b/src/lib/pubkey/dl_algo/dl_algo.cpp
@@ -35,7 +35,7 @@ std::vector<byte> DL_Scheme_PublicKey::public_key_bits() const
}
DL_Scheme_PublicKey::DL_Scheme_PublicKey(const AlgorithmIdentifier& alg_id,
- const secure_vector<byte>& key_bits,
+ const std::vector<byte>& key_bits,
DL_Group::Format format)
{
m_group.BER_decode(alg_id.parameters, format);
diff --git a/src/lib/pubkey/dl_algo/dl_algo.h b/src/lib/pubkey/dl_algo/dl_algo.h
index 46f86a1bb..40c4a1fab 100644
--- a/src/lib/pubkey/dl_algo/dl_algo.h
+++ b/src/lib/pubkey/dl_algo/dl_algo.h
@@ -66,11 +66,11 @@ class BOTAN_DLL DL_Scheme_PublicKey : public virtual Public_Key
/**
* Create a public key.
* @param alg_id the X.509 algorithm identifier
- * @param key_bits X.509 subject public key info structure
+ * @param key_bits DER encoded public key bits
* @param group_format the underlying groups encoding format
*/
DL_Scheme_PublicKey(const AlgorithmIdentifier& alg_id,
- const secure_vector<byte>& key_bits,
+ const std::vector<byte>& key_bits,
DL_Group::Format group_format);
protected: