aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/asn1/alg_id.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge some of the ASN.1 headersJack Lloyd2020-10-311-54/+1
| | | | | Deprecate asn1_str.h asn1_time.h asn1_oid.h and alg_id.h with all contents moved to existing asn1_obj.h
* Check that X.509 SignatureAlgorithm parameters are as expectedJack Lloyd2020-06-091-0/+8
| | | | | | | | | | | | | | For modes where the parameters should be either NULL or empty, we previously accepted anything at all. We can't enforce strictly empty or strictly NULL for most cases because practice has changed over time and there are certs using empty params with RSA and NULL params with ECSDA and etc. We do attempt to enforce the strict RFC requirement for XMSS and Ed25519 since they are new algorithms and hopefully everyone just followed the spec. Issue reported by Mario Korth of Ruhr-Universität Bochum.
* Support Ed25519 certificate formatJack Lloyd2018-03-201-1/+1
| | | | Able to create certificate chain and verify it with OpenSSL 1.1.1
* Of course they are public member variables, not functions ...Jack Lloyd2018-02-131-1/+1
|
* Add BOTAN_DEPRECATED_PUBLIC_MEMBER_FUNCTIONSJack Lloyd2018-02-131-0/+1
| | | | | | Makes such things easier to find in the future. Also adds BOTAN_NO_DEPRECATED which causes them to be private instead.
* Add accessors to ASN1_Attribute and AlgorithmIdentifierJack Lloyd2017-12-191-7/+12
|
* Fix some other copy+paste code in BER_DecoderJack Lloyd2017-12-191-2/+2
|
* Further header cleanupsJack Lloyd2017-09-281-0/+1
|
* Change header guard format to BOTAN_FOO_H_Jack Lloyd2017-09-201-2/+2
| | | | | | ISO C++ reserves names with double underscores in them Closes #512
* Add API stability annotations.Jack Lloyd2017-09-191-3/+3
| | | | | Defined in build.h, all equal to BOTAN_DLL so ties into existing system for exporting symbols.
* Content:Tomasz Frydrych2017-04-031-1/+1
| | | | | | | | | * fixes for deprecated constructions in c++11 and later (explicit rule of 3/5 or implicit rule of 0 and other violations) * `default` specifier instead of `{}` in some places(probably all) * removal of unreachable code (for example `return` after `throw`) * removal of compilation unit only visible, but not used functions * fix for `throw()` specifier - used instead `BOTAN_NOEXCEPT` * removed not needed semicolons
* Convert to using standard uintN_t integer typesJack Lloyd2016-12-181-3/+3
| | | | | | Renames a couple of functions for somewhat better name consistency, eg make_u32bit becomes make_uint32. The old typedefs remain for now since probably lots of application code uses them.
* Add final attribute to many classesJack Lloyd2016-01-101-1/+1
| | | | | | | In some cases this can offer better optimization, via devirtualization. And it lets the user know the class is not intended for derivation. Some discussion in GH #402
* Mass-prefix member vars with m_René Korthaus2016-01-081-0/+3
|
* asn1: Add missing overridesDaniel Seither2015-07-301-2/+2
|
* Ensure all files have copyright and license info.lloyd2015-01-101-1/+1
| | | | | Update license header line to specify the terms and refer to the file, neither of which it included before.
* Move lib into srclloyd2014-01-101-0/+49