freebsd-dev/crypto/openssh/key.h

167 lines
5.2 KiB
C
Raw Normal View History

2014-01-30 10:56:49 +00:00
/* $OpenBSD: key.h,v 1.41 2014/01/09 23:20:00 djm Exp $ */
/*
2002-03-18 09:55:03 +00:00
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
*
* 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.
*/
#ifndef KEY_H
#define KEY_H
2010-03-08 11:19:52 +00:00
#include "buffer.h"
#include <openssl/rsa.h>
#include <openssl/dsa.h>
2011-02-17 11:47:40 +00:00
#ifdef OPENSSL_HAS_ECC
#include <openssl/ec.h>
#endif
typedef struct Key Key;
enum types {
KEY_RSA1,
KEY_RSA,
KEY_DSA,
2011-02-17 11:47:40 +00:00
KEY_ECDSA,
2014-01-30 10:56:49 +00:00
KEY_ED25519,
2010-03-08 11:19:52 +00:00
KEY_RSA_CERT,
KEY_DSA_CERT,
2011-02-17 11:47:40 +00:00
KEY_ECDSA_CERT,
2014-01-30 10:56:49 +00:00
KEY_ED25519_CERT,
2010-11-08 10:45:44 +00:00
KEY_RSA_CERT_V00,
KEY_DSA_CERT_V00,
KEY_UNSPEC
};
enum fp_type {
SSH_FP_SHA1,
2012-08-29 15:55:54 +00:00
SSH_FP_MD5,
SSH_FP_SHA256
};
enum fp_rep {
SSH_FP_HEX,
2008-07-23 09:33:08 +00:00
SSH_FP_BUBBLEBABBLE,
SSH_FP_RANDOMART
};
2002-03-18 09:55:03 +00:00
/* key is stored in external hardware */
#define KEY_FLAG_EXT 0x0001
2010-03-08 11:19:52 +00: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-11-08 10:45:44 +00:00
u_int64_t serial;
2010-03-08 11:19:52 +00:00
char *key_id;
u_int nprincipals;
char **principals;
u_int64_t valid_after, valid_before;
2010-11-08 10:45:44 +00:00
Buffer critical;
Buffer extensions;
2010-03-08 11:19:52 +00:00
Key *signature_key;
};
struct Key {
2002-03-18 09:55:03 +00:00
int type;
int flags;
RSA *rsa;
DSA *dsa;
2011-02-17 11:47:40 +00:00
int ecdsa_nid; /* NID of curve */
#ifdef OPENSSL_HAS_ECC
EC_KEY *ecdsa;
#else
void *ecdsa;
#endif
2010-03-08 11:19:52 +00:00
struct KeyCert *cert;
2014-01-30 10:56:49 +00:00
u_char *ed25519_sk;
u_char *ed25519_pk;
};
2014-01-30 10:56:49 +00:00
#define ED25519_SK_SZ crypto_sign_ed25519_SECRETKEYBYTES
#define ED25519_PK_SZ crypto_sign_ed25519_PUBLICKEYBYTES
2004-02-26 10:38:49 +00:00
Key *key_new(int);
2010-03-08 11:19:52 +00:00
void key_add_private(Key *);
2004-02-26 10:38:49 +00:00
Key *key_new_private(int);
void key_free(Key *);
Key *key_demote(const Key *);
2010-03-08 11:19:52 +00:00
int key_equal_public(const Key *, const Key *);
2004-02-26 10:38:49 +00:00
int key_equal(const Key *, const Key *);
2013-09-18 17:27:38 +00:00
char *key_fingerprint(const Key *, enum fp_type, enum fp_rep);
2013-03-22 11:19:48 +00:00
u_char *key_fingerprint_raw(const Key *, enum fp_type, u_int *);
2004-02-26 10:38:49 +00:00
const char *key_type(const Key *);
2010-04-28 08:37:00 +00:00
const char *key_cert_type(const Key *);
2004-02-26 10:38:49 +00:00
int key_write(const Key *, FILE *);
int key_read(Key *, char **);
u_int key_size(const Key *);
2002-03-18 09:55:03 +00:00
Key *key_generate(int, u_int);
2004-02-26 10:38:49 +00:00
Key *key_from_private(const Key *);
2002-03-18 09:55:03 +00:00
int key_type_from_name(char *);
2010-03-08 11:19:52 +00:00
int key_is_cert(const Key *);
2014-01-30 10:56:49 +00:00
int key_type_is_cert(int);
2010-03-08 11:19:52 +00:00
int key_type_plain(int);
2010-11-08 10:45:44 +00:00
int key_to_certified(Key *, int);
2010-03-08 11:19:52 +00: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 **);
2013-03-22 11:19:48 +00:00
int key_cert_is_legacy(const Key *);
2011-02-17 11:47:40 +00:00
int key_ecdsa_nid_from_name(const char *);
int key_curve_name_to_nid(const char *);
2013-09-18 17:27:38 +00:00
const char *key_curve_nid_to_name(int);
2011-02-17 11:47:40 +00:00
u_int key_curve_nid_to_bits(int);
int key_ecdsa_bits_to_nid(int);
#ifdef OPENSSL_HAS_ECC
int key_ecdsa_key_to_nid(EC_KEY *);
2014-01-30 10:56:49 +00:00
int key_ec_nid_to_hash_alg(int nid);
2011-02-17 11:47:40 +00:00
int key_ec_validate_public(const EC_GROUP *, const EC_POINT *);
int key_ec_validate_private(const EC_KEY *);
#endif
2014-01-30 10:56:49 +00:00
char *key_alg_list(int, int);
2011-02-17 11:47:40 +00:00
2004-02-26 10:38:49 +00: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 *);
2011-02-17 11:47:40 +00:00
const char *key_ssh_name_plain(const Key *);
2004-02-26 10:38:49 +00:00
int key_names_valid2(const char *);
2004-02-26 10:38:49 +00: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);
2004-02-26 10:38:49 +00: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);
2011-02-17 11:47:40 +00: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);
2004-02-26 10:38:49 +00: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);
2014-01-30 10:56:49 +00:00
int ssh_ed25519_sign(const Key *, u_char **, u_int *, const u_char *, u_int);
int ssh_ed25519_verify(const Key *, const u_char *, u_int, const u_char *, u_int);
2011-02-17 11:47:40 +00:00
#if defined(OPENSSL_HAS_ECC) && (defined(DEBUG_KEXECDH) || defined(DEBUG_PK))
void key_dump_ec_point(const EC_GROUP *, const EC_POINT *);
void key_dump_ec_key(const EC_KEY *);
#endif
2014-01-30 10:56:49 +00:00
void key_private_serialize(const Key *, Buffer *);
Key *key_private_deserialize(Buffer *);
#endif