diff options
author | lloyd <[email protected]> | 2006-06-23 06:00:52 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-06-23 06:00:52 +0000 |
commit | 940697169376f32d10da71d6f0d4660a71c45545 (patch) | |
tree | 2a55510b53c8106674c7677b6c3f5b6ac140e34f /include/x509_ext.h | |
parent | 754c16487b5c2f6ded58a251802ba72c74753282 (diff) |
Add a new variant of Extensions::decode_from that doesn't thrown an
exception if it finds an unknown critical extension.
Diffstat (limited to 'include/x509_ext.h')
-rw-r--r-- | include/x509_ext.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/x509_ext.h b/include/x509_ext.h index 147f17aa5..b26913feb 100644 --- a/include/x509_ext.h +++ b/include/x509_ext.h @@ -51,6 +51,7 @@ class Extensions : public ASN1_Object public: void encode_into(class DER_Encoder&) const; void decode_from(class BER_Decoder&); + void decode_from(class BER_Decoder&, bool); void contents_to(Data_Store&, Data_Store&) const; |