aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/libcharon/plugins/sql/cred.sql24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/libcharon/plugins/sql/cred.sql b/src/libcharon/plugins/sql/cred.sql
deleted file mode 100644
index 4b53e4e4b..000000000
--- a/src/libcharon/plugins/sql/cred.sql
+++ /dev/null
@@ -1,24 +0,0 @@
-
-DROP TABLE IF EXISTS shared_secrets;
-CREATE TABLE shared_secrets (
- id INTEGER PRIMARY KEY AUTOINCREMENT,
- type INTEGER,
- local TEXT,
- remote TEXT
-);
-
-DROP TABLE IF EXISTS certificates;
-CREATE TABLE certificates (
- id INTEGER PRIMARY KEY AUTOINCREMENT,
- type INTEGER,
- subject TEXT,
- data BLOB,
-);
-
-DROP TABLE IF EXISTS private_keys;
-CREATE TABLE private_keys (
- id INTEGER PRIMARY KEY AUTOINCREMENT,
- type INTEGER,
- keyid BLOB,
- data BLOB,
-);