aboutsummaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-09-03 02:27:09 -0400
committerRob Austein <sra@hactrn.net>2016-09-03 02:27:09 -0400
commit8a36a9c42b6c327056ca334d556c221c28375d15 (patch)
treecea62955ffe0cbb05b4c584ff441abc7a1e50d8b /schema.sql
parent1d60161a9eae18e339232bed879f0525925e10cb (diff)
Hack PKCS #11 to work with revised libhal pkey API.
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/schema.sql b/schema.sql
index 9de8ce2..1db361c 100644
--- a/schema.sql
+++ b/schema.sql
@@ -78,7 +78,7 @@ CREATE TEMPORARY TABLE IF NOT EXISTS object (
CREATE TEMPORARY TABLE IF NOT EXISTS session_object (
session_object_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
hal_pkey_type INTEGER,
- hal_pkey_ski BLOB,
+ hal_pkey_uuid BLOB,
object_id INTEGER NOT NULL UNIQUE
REFERENCES object
ON DELETE CASCADE ON UPDATE CASCADE
@@ -96,7 +96,7 @@ CREATE TEMPORARY TABLE IF NOT EXISTS session_attribute (
CREATE TABLE IF NOT EXISTS token_object (
token_object_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
hal_pkey_type INTEGER,
- hal_pkey_ski BLOB
+ hal_pkey_uuid BLOB
);
CREATE TABLE IF NOT EXISTS token_attribute (