Changed paths:
M .gitignore
M CHANGES.md
M crypto/x509/x509cset.c
M doc/man3/X509_get0_signature.pod
M include/openssl/x509.h.in M test/crltest.c
M util/libcrypto.num
Log Message:
-----------
Provide X509_CRL_get0_tbs_sigalg()
X509_CRL_get0_tbs_sigalg() corresponds to X509_get0_tbs_sigalg() and
retrieves the AlgorithmIdentifier inside the TBSCertList which is not
currently accessible in any sane way from public API.
This PR adds X509_get0_tbs_sigalg() to the public API, documents it,
adds a simple regress check so there is coverage and mentions the
addition in CHANGES.md.
On top of that, fix a typo in .gitignore and clean up some order
inconsistencies in X509_get0_signature.pod.