diff options
author | lloyd <[email protected]> | 2012-06-13 18:06:57 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-06-13 18:06:57 +0000 |
commit | 6dc2f28174e110427899727690c82a8d230c908e (patch) | |
tree | 0d092b56dd740b15552b211a2f9b7ffd50d59964 /src/utils/datastor/datastor.h | |
parent | 9644a3ecebb15d8241e65dcae63bd6d0382a95a6 (diff) |
Add support (decoding only) for the CRL Distribution Point extension.
Diffstat (limited to 'src/utils/datastor/datastor.h')
-rw-r--r-- | src/utils/datastor/datastor.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/utils/datastor/datastor.h b/src/utils/datastor/datastor.h index b471f85e1..1c0504fc9 100644 --- a/src/utils/datastor/datastor.h +++ b/src/utils/datastor/datastor.h @@ -33,7 +33,10 @@ class BOTAN_DLL Data_Store std::vector<std::string> get(const std::string&) const; - std::string get1(const std::string&) const; + std::string get1(const std::string& key) const; + + std::string get1(const std::string& key, + const std::string& default_value) const; std::vector<byte> get1_memvec(const std::string&) const; u32bit get1_u32bit(const std::string&, u32bit = 0) const; |