strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Renamed 'use' database column as that is a keyword in MySQL.
[strongswan.git]
/
src
/
libcharon
/
plugins
/
eap_simaka_sql
/
sqlite.sql
1
DROP TABLE IF EXISTS
triplets
;
2
CREATE TABLE
triplets
(
3
id
TEXT
NOT NULL
,
4
used
INTEGER
NOT NULL
,
5
rand
BLOB NOT NULL
,
6
sres
BLOB NOT NULL
,
7
kc
BLOB NOT NULL
8
);
9
10
DROP TABLE IF EXISTS
quintuplets
;
11
CREATE TABLE
quintuplets
(
12
id
TEXT
NOT NULL
,
13
used
INTEGER
NOT NULL
,
14
rand
BLOB NOT NULL
,
15
autn
BLOB NOT NULL
,
16
ck
BLOB NOT NULL
,
17
ik
BLOB NOT NULL
,
18
res
BLOB NOT NULL
19
);