Botan 2.19.3
Crypto and TLS for C&
certstor_sqlite.cpp
Go to the documentation of this file.
1/*
2* Certificate Store in SQL
3* (C) 2016 Kai Michaelis, Rohde & Schwarz Cybersecurity
4*
5* Botan is released under the Simplified BSD License (see license.txt)
6*/
7
8#include <botan/certstor_sqlite.h>
9#include <botan/sqlite3.h>
10
11namespace Botan {
12
14 const std::string& passwd,
16 const std::string& table_prefix) :
17 Certificate_Store_In_SQL(std::make_shared<Sqlite3_Database>(db_path), passwd, rng, table_prefix)
18 {}
19}
Certificate_Store_In_SQLite(const std::string &db_path, const std::string &passwd, RandomNumberGenerator &rng, const std::string &table_prefix="")
Definition bigint.h:1143