diff options
author | HoneyryderChuck <[email protected]> | 2024-04-16 18:07:56 +0100 |
---|---|---|
committer | git <[email protected]> | 2024-06-27 16:00:55 +0000 |
commit | 9c5e9d29f0c9b025577cb72b421b9682bfadcd37 (patch) | |
tree | 9bfaa0a9de073d7fcc4ba3e8359a598adaf4b855 /ext/openssl/ossl_asn1.h | |
parent | c6a0d03649c686a537c1f513a1e32205ac6a6512 (diff) |
[ruby/openssl] rewriting most of the asn1 init code in ruby
to have as much of the lib in ruby as possible
https://github.com/ruby/openssl/commit/8305051728
Diffstat (limited to 'ext/openssl/ossl_asn1.h')
-rw-r--r-- | ext/openssl/ossl_asn1.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/openssl/ossl_asn1.h b/ext/openssl/ossl_asn1.h index f47e353948..fae8762200 100644 --- a/ext/openssl/ossl_asn1.h +++ b/ext/openssl/ossl_asn1.h @@ -55,6 +55,8 @@ extern VALUE cASN1ObjectId; /* OBJECT IDENTIFIER */ extern VALUE cASN1UTCTime, cASN1GeneralizedTime; /* TIME */ extern VALUE cASN1Sequence, cASN1Set; /* CONSTRUCTIVE */ +extern VALUE cASN1EndOfContent; /* END OF CONTENT */ + ASN1_TYPE *ossl_asn1_get_asn1type(VALUE); void Init_ossl_asn1(void); |