2010-11-05 02:19:49 +03:00
|
|
|
/* $OpenBSD: key.h,v 1.33 2010/10/28 11:22:09 djm Exp $ */
|
2001-01-29 10:39:26 +03:00
|
|
|
|
2000-09-16 06:29:08 +04:00
|
|
|
/*
|
2001-07-04 07:32:30 +04:00
|
|
|
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
|
2000-09-16 06:29:08 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2000-03-26 07:04:51 +04:00
|
|
|
#ifndef KEY_H
|
|
|
|
#define KEY_H
|
|
|
|
|
2010-02-26 23:55:05 +03:00
|
|
|
#include "buffer.h"
|
2001-01-22 08:34:40 +03:00
|
|
|
#include <openssl/rsa.h>
|
|
|
|
#include <openssl/dsa.h>
|
2010-09-10 05:39:26 +04:00
|
|
|
#ifdef OPENSSL_HAS_ECC
|
2010-08-31 16:41:14 +04:00
|
|
|
#include <openssl/ec.h>
|
2010-09-10 05:39:26 +04:00
|
|
|
#endif
|
2001-01-22 08:34:40 +03:00
|
|
|
|
2000-03-26 07:04:51 +04:00
|
|
|
typedef struct Key Key;
|
|
|
|
enum types {
|
2000-11-13 14:57:25 +03:00
|
|
|
KEY_RSA1,
|
2000-03-26 07:04:51 +04:00
|
|
|
KEY_RSA,
|
|
|
|
KEY_DSA,
|
2010-08-31 16:41:14 +04:00
|
|
|
KEY_ECDSA,
|
2010-02-26 23:55:05 +03:00
|
|
|
KEY_RSA_CERT,
|
|
|
|
KEY_DSA_CERT,
|
2010-08-31 16:41:14 +04:00
|
|
|
KEY_ECDSA_CERT,
|
2010-04-16 09:56:21 +04:00
|
|
|
KEY_RSA_CERT_V00,
|
|
|
|
KEY_DSA_CERT_V00,
|
2000-11-13 14:57:25 +03:00
|
|
|
KEY_UNSPEC
|
2000-03-26 07:04:51 +04:00
|
|
|
};
|
2001-03-11 23:03:44 +03:00
|
|
|
enum fp_type {
|
|
|
|
SSH_FP_SHA1,
|
|
|
|
SSH_FP_MD5
|
|
|
|
};
|
|
|
|
enum fp_rep {
|
|
|
|
SSH_FP_HEX,
|
- grunk@cvs.openbsd.org 2008/06/11 21:01:35
[ssh_config.5 key.h readconf.c readconf.h ssh-keygen.1 ssh-keygen.c key.c
sshconnect.c]
Introduce SSH Fingerprint ASCII Visualization, a technique inspired by the
graphical hash visualization schemes known as "random art", and by
Dan Kaminsky's musings on the subject during a BlackOp talk at the
23C3 in Berlin.
Scientific publication (original paper):
"Hash Visualization: a New Technique to improve Real-World Security",
Perrig A. and Song D., 1999, International Workshop on Cryptographic
Techniques and E-Commerce (CrypTEC '99)
http://sparrow.ece.cmu.edu/~adrian/projects/validation/validation.pdf
The algorithm used here is a worm crawling over a discrete plane,
leaving a trace (augmenting the field) everywhere it goes.
Movement is taken from dgst_raw 2bit-wise. Bumping into walls
makes the respective movement vector be ignored for this turn,
thus switching to the other color of the chessboard.
Graphs are not unambiguous for now, because circles in graphs can be
walked in either direction.
discussions with several people,
help, corrections and ok markus@ djm@
2008-06-12 22:40:35 +04:00
|
|
|
SSH_FP_BUBBLEBABBLE,
|
|
|
|
SSH_FP_RANDOMART
|
2001-03-11 23:03:44 +03:00
|
|
|
};
|
2001-07-04 08:52:03 +04:00
|
|
|
|
|
|
|
/* key is stored in external hardware */
|
|
|
|
#define KEY_FLAG_EXT 0x0001
|
|
|
|
|
2010-02-26 23:55:05 +03:00
|
|
|
#define CERT_MAX_PRINCIPALS 256
|
|
|
|
struct KeyCert {
|
|
|
|
Buffer certblob; /* Kept around for use on wire */
|
|
|
|
u_int type; /* SSH2_CERT_TYPE_USER or SSH2_CERT_TYPE_HOST */
|
2010-04-16 09:56:21 +04:00
|
|
|
u_int64_t serial;
|
2010-02-26 23:55:05 +03:00
|
|
|
char *key_id;
|
|
|
|
u_int nprincipals;
|
|
|
|
char **principals;
|
|
|
|
u_int64_t valid_after, valid_before;
|
2010-04-16 09:56:21 +04:00
|
|
|
Buffer critical;
|
|
|
|
Buffer extensions;
|
2010-02-26 23:55:05 +03:00
|
|
|
Key *signature_key;
|
|
|
|
};
|
|
|
|
|
2000-03-26 07:04:51 +04:00
|
|
|
struct Key {
|
2001-07-04 08:52:03 +04:00
|
|
|
int type;
|
|
|
|
int flags;
|
2000-03-26 07:04:51 +04:00
|
|
|
RSA *rsa;
|
|
|
|
DSA *dsa;
|
2010-08-31 16:41:14 +04:00
|
|
|
int ecdsa_nid; /* NID of curve */
|
2010-09-10 05:39:26 +04:00
|
|
|
#ifdef OPENSSL_HAS_ECC
|
2010-08-31 16:41:14 +04:00
|
|
|
EC_KEY *ecdsa;
|
2010-09-10 05:39:26 +04:00
|
|
|
#else
|
|
|
|
void *ecdsa;
|
|
|
|
#endif
|
2010-02-26 23:55:05 +03:00
|
|
|
struct KeyCert *cert;
|
2000-03-26 07:04:51 +04:00
|
|
|
};
|
|
|
|
|
2003-11-17 13:18:23 +03:00
|
|
|
Key *key_new(int);
|
2010-02-26 23:55:05 +03:00
|
|
|
void key_add_private(Key *);
|
2003-11-17 13:18:23 +03:00
|
|
|
Key *key_new_private(int);
|
|
|
|
void key_free(Key *);
|
|
|
|
Key *key_demote(const Key *);
|
2010-02-26 23:55:05 +03:00
|
|
|
int key_equal_public(const Key *, const Key *);
|
2003-11-17 13:18:23 +03:00
|
|
|
int key_equal(const Key *, const Key *);
|
2010-02-26 23:55:05 +03:00
|
|
|
char *key_fingerprint(Key *, enum fp_type, enum fp_rep);
|
|
|
|
u_char *key_fingerprint_raw(Key *, enum fp_type, u_int *);
|
2003-11-17 13:18:23 +03:00
|
|
|
const char *key_type(const Key *);
|
2010-03-21 21:58:24 +03:00
|
|
|
const char *key_cert_type(const Key *);
|
2003-11-17 13:18:23 +03:00
|
|
|
int key_write(const Key *, FILE *);
|
|
|
|
int key_read(Key *, char **);
|
|
|
|
u_int key_size(const Key *);
|
2000-11-13 14:57:25 +03:00
|
|
|
|
2001-07-04 08:02:36 +04:00
|
|
|
Key *key_generate(int, u_int);
|
2003-11-17 13:18:23 +03:00
|
|
|
Key *key_from_private(const Key *);
|
2001-07-04 08:46:56 +04:00
|
|
|
int key_type_from_name(char *);
|
2010-02-26 23:55:05 +03:00
|
|
|
int key_is_cert(const Key *);
|
|
|
|
int key_type_plain(int);
|
2010-04-16 09:56:21 +04:00
|
|
|
int key_to_certified(Key *, int);
|
2010-02-26 23:55:05 +03:00
|
|
|
int key_drop_cert(Key *);
|
|
|
|
int key_certify(Key *, Key *);
|
|
|
|
void key_cert_copy(const Key *, struct Key *);
|
|
|
|
int key_cert_check_authority(const Key *, int, int, const char *,
|
|
|
|
const char **);
|
2010-04-16 09:56:21 +04:00
|
|
|
int key_cert_is_legacy(Key *);
|
2000-11-13 14:57:25 +03:00
|
|
|
|
2010-08-31 16:41:14 +04:00
|
|
|
int key_ecdsa_nid_from_name(const char *);
|
|
|
|
int key_curve_name_to_nid(const char *);
|
|
|
|
const char * key_curve_nid_to_name(int);
|
2010-09-10 05:23:34 +04:00
|
|
|
u_int key_curve_nid_to_bits(int);
|
2010-08-31 16:41:14 +04:00
|
|
|
int key_ecdsa_bits_to_nid(int);
|
2010-09-10 05:39:26 +04:00
|
|
|
#ifdef OPENSSL_HAS_ECC
|
2010-11-05 02:19:49 +03:00
|
|
|
int key_ecdsa_key_to_nid(EC_KEY *);
|
2010-09-10 05:23:34 +04:00
|
|
|
const EVP_MD * key_ec_nid_to_evpmd(int nid);
|
2010-08-31 16:41:14 +04:00
|
|
|
int key_ec_validate_public(const EC_GROUP *, const EC_POINT *);
|
|
|
|
int key_ec_validate_private(const EC_KEY *);
|
2010-09-10 05:39:26 +04:00
|
|
|
#endif
|
2010-08-31 16:41:14 +04:00
|
|
|
|
2003-11-17 13:18:23 +03:00
|
|
|
Key *key_from_blob(const u_char *, u_int);
|
|
|
|
int key_to_blob(const Key *, u_char **, u_int *);
|
|
|
|
const char *key_ssh_name(const Key *);
|
2010-08-31 16:41:14 +04:00
|
|
|
const char *key_ssh_name_plain(const Key *);
|
2003-11-17 13:18:23 +03:00
|
|
|
int key_names_valid2(const char *);
|
2000-11-13 14:57:25 +03:00
|
|
|
|
2003-11-17 13:18:23 +03:00
|
|
|
int key_sign(const Key *, u_char **, u_int *, const u_char *, u_int);
|
|
|
|
int key_verify(const Key *, const u_char *, u_int, const u_char *, u_int);
|
2000-03-26 07:04:51 +04:00
|
|
|
|
2003-11-17 13:18:23 +03:00
|
|
|
int ssh_dss_sign(const Key *, u_char **, u_int *, const u_char *, u_int);
|
|
|
|
int ssh_dss_verify(const Key *, const u_char *, u_int, const u_char *, u_int);
|
2010-08-31 16:41:14 +04:00
|
|
|
int ssh_ecdsa_sign(const Key *, u_char **, u_int *, const u_char *, u_int);
|
|
|
|
int ssh_ecdsa_verify(const Key *, const u_char *, u_int, const u_char *, u_int);
|
2003-11-17 13:18:23 +03:00
|
|
|
int ssh_rsa_sign(const Key *, u_char **, u_int *, const u_char *, u_int);
|
|
|
|
int ssh_rsa_verify(const Key *, const u_char *, u_int, const u_char *, u_int);
|
2003-02-24 04:01:40 +03:00
|
|
|
|
2010-09-10 05:39:26 +04:00
|
|
|
#if defined(OPENSSL_HAS_ECC) && (defined(DEBUG_KEXECDH) || defined(DEBUG_PK))
|
2010-08-31 16:41:14 +04:00
|
|
|
void key_dump_ec_point(const EC_GROUP *, const EC_POINT *);
|
|
|
|
void key_dump_ec_key(const EC_KEY *);
|
|
|
|
#endif
|
|
|
|
|
2000-03-26 07:04:51 +04:00
|
|
|
#endif
|