blob: d8ad13d080b87447cf43eb8886def6c87797e479 [file] [log] [blame]
Damien Millerb3051d02014-01-10 10:58:53 +11001/* $OpenBSD: key.h,v 1.41 2014/01/09 23:20:00 djm Exp $ */
Ben Lindstrom36579d32001-01-29 07:39:26 +00002
Damien Millere4340be2000-09-16 13:29:08 +11003/*
Ben Lindstrom44697232001-07-04 03:32:30 +00004 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +11005 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
Damien Miller450a7a12000-03-26 13:04:51 +100026#ifndef KEY_H
27#define KEY_H
28
Damien Miller0a80ca12010-02-27 07:55:05 +110029#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000030#include <openssl/rsa.h>
31#include <openssl/dsa.h>
Damien Miller6af914a2010-09-10 11:39:26 +100032#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +100033#include <openssl/ec.h>
Damien Miller6af914a2010-09-10 11:39:26 +100034#endif
Ben Lindstrom226cfa02001-01-22 05:34:40 +000035
Damien Miller450a7a12000-03-26 13:04:51 +100036typedef struct Key Key;
37enum types {
Damien Miller0bc1bd82000-11-13 22:57:25 +110038 KEY_RSA1,
Damien Miller450a7a12000-03-26 13:04:51 +100039 KEY_RSA,
40 KEY_DSA,
Damien Millereb8b60e2010-08-31 22:41:14 +100041 KEY_ECDSA,
Damien Miller5be9d9e2013-12-07 11:24:01 +110042 KEY_ED25519,
Damien Miller0a80ca12010-02-27 07:55:05 +110043 KEY_RSA_CERT,
44 KEY_DSA_CERT,
Damien Millereb8b60e2010-08-31 22:41:14 +100045 KEY_ECDSA_CERT,
Damien Miller5be9d9e2013-12-07 11:24:01 +110046 KEY_ED25519_CERT,
Damien Miller4e270b02010-04-16 15:56:21 +100047 KEY_RSA_CERT_V00,
48 KEY_DSA_CERT_V00,
Damien Miller0bc1bd82000-11-13 22:57:25 +110049 KEY_UNSPEC
Damien Miller450a7a12000-03-26 13:04:51 +100050};
Ben Lindstrom96e8ea62001-03-11 20:03:44 +000051enum fp_type {
52 SSH_FP_SHA1,
Damien Miller3bde12a2012-06-20 21:51:11 +100053 SSH_FP_MD5,
54 SSH_FP_SHA256
Ben Lindstrom96e8ea62001-03-11 20:03:44 +000055};
56enum fp_rep {
57 SSH_FP_HEX,
Darren Tucker9c16ac92008-06-13 04:40:35 +100058 SSH_FP_BUBBLEBABBLE,
59 SSH_FP_RANDOMART
Ben Lindstrom96e8ea62001-03-11 20:03:44 +000060};
Ben Lindstromc5b68002001-07-04 04:52:03 +000061
62/* key is stored in external hardware */
63#define KEY_FLAG_EXT 0x0001
64
Damien Miller0a80ca12010-02-27 07:55:05 +110065#define CERT_MAX_PRINCIPALS 256
66struct KeyCert {
67 Buffer certblob; /* Kept around for use on wire */
68 u_int type; /* SSH2_CERT_TYPE_USER or SSH2_CERT_TYPE_HOST */
Damien Miller4e270b02010-04-16 15:56:21 +100069 u_int64_t serial;
Damien Miller0a80ca12010-02-27 07:55:05 +110070 char *key_id;
71 u_int nprincipals;
72 char **principals;
73 u_int64_t valid_after, valid_before;
Damien Miller4e270b02010-04-16 15:56:21 +100074 Buffer critical;
75 Buffer extensions;
Damien Miller0a80ca12010-02-27 07:55:05 +110076 Key *signature_key;
77};
78
Damien Miller450a7a12000-03-26 13:04:51 +100079struct Key {
Ben Lindstromc5b68002001-07-04 04:52:03 +000080 int type;
81 int flags;
Damien Miller450a7a12000-03-26 13:04:51 +100082 RSA *rsa;
83 DSA *dsa;
Damien Millereb8b60e2010-08-31 22:41:14 +100084 int ecdsa_nid; /* NID of curve */
Damien Miller6af914a2010-09-10 11:39:26 +100085#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +100086 EC_KEY *ecdsa;
Damien Miller6af914a2010-09-10 11:39:26 +100087#else
88 void *ecdsa;
89#endif
Damien Miller0a80ca12010-02-27 07:55:05 +110090 struct KeyCert *cert;
Damien Miller5be9d9e2013-12-07 11:24:01 +110091 u_char *ed25519_sk;
92 u_char *ed25519_pk;
Damien Miller450a7a12000-03-26 13:04:51 +100093};
94
Damien Miller5be9d9e2013-12-07 11:24:01 +110095#define ED25519_SK_SZ crypto_sign_ed25519_SECRETKEYBYTES
96#define ED25519_PK_SZ crypto_sign_ed25519_PUBLICKEYBYTES
97
Damien Millerf58b58c2003-11-17 21:18:23 +110098Key *key_new(int);
Damien Miller0a80ca12010-02-27 07:55:05 +110099void key_add_private(Key *);
Damien Millerf58b58c2003-11-17 21:18:23 +1100100Key *key_new_private(int);
101void key_free(Key *);
102Key *key_demote(const Key *);
Damien Miller0a80ca12010-02-27 07:55:05 +1100103int key_equal_public(const Key *, const Key *);
Damien Millerf58b58c2003-11-17 21:18:23 +1100104int key_equal(const Key *, const Key *);
Darren Tucker0acca372013-06-02 07:41:51 +1000105char *key_fingerprint(const Key *, enum fp_type, enum fp_rep);
Damien Millerf3747bf2013-01-18 11:44:04 +1100106u_char *key_fingerprint_raw(const Key *, enum fp_type, u_int *);
Damien Millerf58b58c2003-11-17 21:18:23 +1100107const char *key_type(const Key *);
Damien Miller1cfbfaf2010-03-22 05:58:24 +1100108const char *key_cert_type(const Key *);
Damien Millerf58b58c2003-11-17 21:18:23 +1100109int key_write(const Key *, FILE *);
110int key_read(Key *, char **);
111u_int key_size(const Key *);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100112
Ben Lindstrom16ae3d02001-07-04 04:02:36 +0000113Key *key_generate(int, u_int);
Damien Millerf58b58c2003-11-17 21:18:23 +1100114Key *key_from_private(const Key *);
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000115int key_type_from_name(char *);
Damien Miller0a80ca12010-02-27 07:55:05 +1100116int key_is_cert(const Key *);
Damien Miller4a3a9d42013-10-30 22:19:47 +1100117int key_type_is_cert(int);
Damien Miller0a80ca12010-02-27 07:55:05 +1100118int key_type_plain(int);
Damien Miller4e270b02010-04-16 15:56:21 +1000119int key_to_certified(Key *, int);
Damien Miller0a80ca12010-02-27 07:55:05 +1100120int key_drop_cert(Key *);
121int key_certify(Key *, Key *);
122void key_cert_copy(const Key *, struct Key *);
123int key_cert_check_authority(const Key *, int, int, const char *,
124 const char **);
Damien Millerf3747bf2013-01-18 11:44:04 +1100125int key_cert_is_legacy(const Key *);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100126
Damien Millereb8b60e2010-08-31 22:41:14 +1000127int key_ecdsa_nid_from_name(const char *);
128int key_curve_name_to_nid(const char *);
Damien Millerea111192013-04-23 19:24:32 +1000129const char *key_curve_nid_to_name(int);
Damien Miller041ab7c2010-09-10 11:23:34 +1000130u_int key_curve_nid_to_bits(int);
Damien Millereb8b60e2010-08-31 22:41:14 +1000131int key_ecdsa_bits_to_nid(int);
Damien Miller6af914a2010-09-10 11:39:26 +1000132#ifdef OPENSSL_HAS_ECC
Damien Millerb472a902010-11-05 10:19:49 +1100133int key_ecdsa_key_to_nid(EC_KEY *);
Damien Millerb3051d02014-01-10 10:58:53 +1100134int key_ec_nid_to_hash_alg(int nid);
Damien Millereb8b60e2010-08-31 22:41:14 +1000135int key_ec_validate_public(const EC_GROUP *, const EC_POINT *);
136int key_ec_validate_private(const EC_KEY *);
Damien Miller6af914a2010-09-10 11:39:26 +1000137#endif
Damien Miller5be9d9e2013-12-07 11:24:01 +1100138char *key_alg_list(int, int);
Damien Millereb8b60e2010-08-31 22:41:14 +1000139
Damien Millerf58b58c2003-11-17 21:18:23 +1100140Key *key_from_blob(const u_char *, u_int);
141int key_to_blob(const Key *, u_char **, u_int *);
142const char *key_ssh_name(const Key *);
Damien Millereb8b60e2010-08-31 22:41:14 +1000143const char *key_ssh_name_plain(const Key *);
Damien Millerf58b58c2003-11-17 21:18:23 +1100144int key_names_valid2(const char *);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100145
Damien Millerf58b58c2003-11-17 21:18:23 +1100146int key_sign(const Key *, u_char **, u_int *, const u_char *, u_int);
147int key_verify(const Key *, const u_char *, u_int, const u_char *, u_int);
Damien Miller450a7a12000-03-26 13:04:51 +1000148
Damien Millerf58b58c2003-11-17 21:18:23 +1100149int ssh_dss_sign(const Key *, u_char **, u_int *, const u_char *, u_int);
150int ssh_dss_verify(const Key *, const u_char *, u_int, const u_char *, u_int);
Damien Millereb8b60e2010-08-31 22:41:14 +1000151int ssh_ecdsa_sign(const Key *, u_char **, u_int *, const u_char *, u_int);
152int ssh_ecdsa_verify(const Key *, const u_char *, u_int, const u_char *, u_int);
Damien Millerf58b58c2003-11-17 21:18:23 +1100153int ssh_rsa_sign(const Key *, u_char **, u_int *, const u_char *, u_int);
154int ssh_rsa_verify(const Key *, const u_char *, u_int, const u_char *, u_int);
Damien Miller5be9d9e2013-12-07 11:24:01 +1100155int ssh_ed25519_sign(const Key *, u_char **, u_int *, const u_char *, u_int);
156int ssh_ed25519_verify(const Key *, const u_char *, u_int, const u_char *, u_int);
Damien Millere8a240f2003-02-24 12:01:40 +1100157
Damien Miller6af914a2010-09-10 11:39:26 +1000158#if defined(OPENSSL_HAS_ECC) && (defined(DEBUG_KEXECDH) || defined(DEBUG_PK))
Damien Millereb8b60e2010-08-31 22:41:14 +1000159void key_dump_ec_point(const EC_GROUP *, const EC_POINT *);
160void key_dump_ec_key(const EC_KEY *);
161#endif
162
Damien Millerf0e90602013-12-07 10:40:26 +1100163void key_private_serialize(const Key *, Buffer *);
164Key *key_private_deserialize(Buffer *);
165
Damien Miller450a7a12000-03-26 13:04:51 +1000166#endif