aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon/plugins/eap_simaka_sql/sqlite.sql
blob: 01f7fa1a50aa6150f876cbea02a4066db71daae2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
DROP TABLE IF EXISTS triplets;
CREATE TABLE triplets (
  id TEXT NOT NULL,
  used INTEGER NOT NULL,
  rand BLOB NOT NULL,
  sres BLOB NOT NULL,
  kc BLOB NOT NULL
);

DROP TABLE IF EXISTS quintuplets;
CREATE TABLE quintuplets (
  id TEXT NOT NULL,
  used INTEGER NOT NULL,
  rand BLOB NOT NULL,
  autn BLOB NOT NULL,
  ck BLOB NOT NULL,
  ik BLOB NOT NULL,
  res BLOB NOT NULL
);