aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/asn1/ber_dec.h
Commit message (Collapse)AuthorAgeFilesLines
* Expose BER_Decoder constructor taking BER_Object&&Jack Lloyd2018-06-081-2/+8
|
* Reduce copying/allocations when BER decodingJack Lloyd2018-06-081-32/+132
| | | | | | | We are constrained in how far we can go because BER_Object must mandatorily copy its value (due to the public member variable exposting the bytes). But this reduces the number of allocations when parsing a sample X.509 certificate by about 15%
* Use BER_Decoder::get_next to cleanup X.509 cert decoding codeJack Lloyd2018-05-211-0/+2
|
* Prepare for making BER_Object members privateJack Lloyd2018-01-181-11/+12
| | | | | Now there are usable accessors that allow the library to avoid using BER_Object members directly.
* Fix some other copy+paste code in BER_DecoderJack Lloyd2017-12-191-4/+21
|
* Refactor to avoid explicit delete in BER_DecoderJack Lloyd2017-09-221-3/+3
|
* Apply final annotations to the library alsoJack Lloyd2017-09-221-1/+1
| | | | | Done by a perl script which converted all classes to final, followed by selective reversion where it caused compilation failures.
* Header file cleanupsJack Lloyd2017-09-211-1/+1
| | | | Some help from include-what-you-use
* 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-1/+1
| | | | | Defined in build.h, all equal to BOTAN_DLL so ties into existing system for exporting symbols.
* Fix some compiler warnings.Jack Lloyd2017-03-221-1/+1
|
* Add generic memory type value BER decoderNuno Goncalves2017-03-071-0/+32
| | | | Signed-off-by: Nuno Goncalves <[email protected]>
* Convert to using standard uintN_t integer typesJack Lloyd2016-12-181-13/+13
| | | | | | 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 explicit static_cast operations to eliminate implicit cast compiler ↵Dan Brown2016-04-271-1/+1
| | | | warnings.
* cppcheck fixes: Class 'X' has a constructor with 1 argument that is not ↵Daniel Neus2016-03-051-3/+3
| | | | explicit.
* Mass-prefix member vars with m_René Korthaus2016-01-081-4/+4
|
* 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/+260