Connect to the key database

This commit is contained in:
Rodolphe Bréard 2023-04-09 17:21:17 +02:00
parent 06d3b8dfca
commit 558ffb2392
7 changed files with 73 additions and 11 deletions

View file

@ -0,0 +1,10 @@
CREATE TABLE key_db (
selector TEXT,
sdid TEXT,
algorithm TEXT,
creation TEXT,
not_after TEXT,
revocation TEXT,
private_key TEXT,
public_key TEXT
);