Added a EAP-SIM/AKA backend reading triplets/quintuplets from a SQL database

This commit is contained in:
Martin Willi
2010-06-02 15:59:44 +02:00
parent c77f4b305e
commit d2c358742a
12 changed files with 685 additions and 0 deletions
@@ -0,0 +1,19 @@
DROP TABLE IF EXISTS triplets;
CREATE TABLE triplets (
id TEXT NOT NULL,
use 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,
use INTEGER NOT NULL,
rand BLOB NOT NULL,
autn BLOB NOT NULL,
ck BLOB NOT NULL,
ik BLOB NOT NULL,
res BLOB NOT NULL
);