diff options
author | lloyd <[email protected]> | 2007-06-11 06:29:08 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2007-06-11 06:29:08 +0000 |
commit | d9ae4f2f0a9fc56ad9da579ebc2498a9cd1154be (patch) | |
tree | d8443185c7c576fb6624808a9cc1fc8697b118ec /src | |
parent | e397c60e515c1ed44e65e8b37b89586acc231c35 (diff) |
We don't need to use locked memory in the X.509 distinguished name.
Diffstat (limited to 'src')
-rw-r--r-- | src/asn1_dn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asn1_dn.cpp b/src/asn1_dn.cpp index d35901852..12225a4b5 100644 --- a/src/asn1_dn.cpp +++ b/src/asn1_dn.cpp @@ -142,7 +142,7 @@ void X509_DN::do_decode(const MemoryRegion<byte>& bits) /************************************************* * Return the BER encoded data, if any * *************************************************/ -SecureVector<byte> X509_DN::get_bits() const +MemoryVector<byte> X509_DN::get_bits() const { return dn_bits; } |