blob: aa163be8a7e4ea97ab349f7f01ac71cf615f593a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* SQLite TLS Session Manager
* (C) 2012 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/tls_session_manager_sqlite.h>
#include <botan/sqlite3.h>
namespace Botan {
namespace TLS {
Session_Manager_SQLite::Session_Manager_SQLite(const std::string& passphrase,
RandomNumberGenerator& rng,
const std::string& db_filename,
size_t max_sessions,
std::chrono::seconds session_lifetime) :
Session_Manager_SQL(std::make_shared<Sqlite3_Database>(db_filename),
passphrase,
rng,
max_sessions,
session_lifetime)
{}
}
}
|