aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils/database.h
Commit message (Collapse)AuthorAgeFilesLines
* PSK DatabaseJack Lloyd2017-11-261-0/+2
|
* Avoid empty methods, use =default or add a commentJack Lloyd2017-10-031-2/+2
| | | | Sonar
* 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.
* 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.
* 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.
* Certificate store using SQLiteKai Michaelis2016-10-021-0/+2
|
* cppcheck fixes: Class 'X' has a constructor with 1 argument that is not ↵Daniel Neus2016-03-051-1/+1
| | | | explicit.
* Build fix. Add SQL_DB_Error exception typeJack Lloyd2015-12-111-0/+8
|
* Add remove_all to TLS session manager interfaceJack Lloyd2015-11-131-1/+1
| | | | DB::spin now returns the number of rows affected
* 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.
* Add abstract database interface so applications can easily store infolloyd2014-12-201-0/+62
in places other than sqlite3, though sqlite3 remains the only implementation. The interface is currently limited to precisely the functionality the TLS session manager needs and will likely expand.