Botan 2.19.3
Crypto and TLS for C&
certstor_sqlite.h
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#ifndef BOTAN_CERT_STORE_SQLITE_H_
9#define BOTAN_CERT_STORE_SQLITE_H_
10
11#include <botan/certstor_sql.h>
12
13namespace Botan {
14
15/**
16* Certificate and private key store backed by an sqlite (https://sqlite.org) database.
17*/
19 {
20 public:
21 /**
22 * Create/open a certificate store.
23 * @param db_path path to the database file
24 * @param passwd password to encrypt private keys in the database
25 * @param rng used for encrypting keys
26 * @param table_prefix optional prefix for db table names
27 */
28 Certificate_Store_In_SQLite(const std::string& db_path,
29 const std::string& passwd,
31 const std::string& table_prefix = "");
32 };
33}
34#endif
int(* final)(unsigned char *, CTX *)
#define BOTAN_PUBLIC_API(maj, min)
Definition compiler.h:31