2016-01-06 21:26:29 -07:00
|
|
|
/* Copyright 2014-2016 OpenMarket Ltd
|
2015-03-04 06:34:38 -07:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
CREATE TABLE IF NOT EXISTS server_tls_certificates(
|
2015-04-28 05:41:33 -06:00
|
|
|
server_name TEXT, -- Server name.
|
|
|
|
fingerprint TEXT, -- Certificate fingerprint.
|
|
|
|
from_server TEXT, -- Which key server the certificate was fetched from.
|
2015-04-15 09:53:47 -06:00
|
|
|
ts_added_ms BIGINT, -- When the certifcate was added.
|
|
|
|
tls_certificate bytea, -- DER encoded x509 certificate.
|
2015-03-18 05:18:49 -06:00
|
|
|
UNIQUE (server_name, fingerprint)
|
2015-04-09 06:45:20 -06:00
|
|
|
);
|
2015-03-04 06:34:38 -07:00
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS server_signature_keys(
|
2015-04-28 05:41:33 -06:00
|
|
|
server_name TEXT, -- Server name.
|
|
|
|
key_id TEXT, -- Key version.
|
|
|
|
from_server TEXT, -- Which key server the key was fetched form.
|
2015-04-15 09:53:47 -06:00
|
|
|
ts_added_ms BIGINT, -- When the key was added.
|
|
|
|
verify_key bytea, -- NACL verification key.
|
2015-03-18 05:18:49 -06:00
|
|
|
UNIQUE (server_name, key_id)
|
2015-04-09 06:45:20 -06:00
|
|
|
);
|