2001-07-04 06:52:03 +02:00
|
|
|
/* $OpenBSD: key.h,v 1.16 2001/06/26 20:14:10 markus Exp $ */
|
2001-01-29 08:39:26 +01:00
|
|
|
|
2000-09-16 04:29:08 +02:00
|
|
|
/*
|
2001-07-04 05:32:30 +02:00
|
|
|
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
|
2000-09-16 04:29:08 +02: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 05:04:51 +02:00
|
|
|
#ifndef KEY_H
|
|
|
|
#define KEY_H
|
|
|
|
|
2001-01-22 06:34:40 +01:00
|
|
|
#include <openssl/rsa.h>
|
|
|
|
#include <openssl/dsa.h>
|
|
|
|
|
2000-03-26 05:04:51 +02:00
|
|
|
typedef struct Key Key;
|
|
|
|
enum types {
|
2000-11-13 12:57:25 +01:00
|
|
|
KEY_RSA1,
|
2000-03-26 05:04:51 +02:00
|
|
|
KEY_RSA,
|
|
|
|
KEY_DSA,
|
2000-11-13 12:57:25 +01:00
|
|
|
KEY_UNSPEC
|
2000-03-26 05:04:51 +02:00
|
|
|
};
|
2001-03-11 21:03:44 +01:00
|
|
|
enum fp_type {
|
|
|
|
SSH_FP_SHA1,
|
|
|
|
SSH_FP_MD5
|
|
|
|
};
|
|
|
|
enum fp_rep {
|
|
|
|
SSH_FP_HEX,
|
|
|
|
SSH_FP_BUBBLEBABBLE
|
|
|
|
};
|
2001-07-04 06:52:03 +02:00
|
|
|
|
|
|
|
/* key is stored in external hardware */
|
|
|
|
#define KEY_FLAG_EXT 0x0001
|
|
|
|
|
2000-03-26 05:04:51 +02:00
|
|
|
struct Key {
|
2001-07-04 06:52:03 +02:00
|
|
|
int type;
|
|
|
|
int flags;
|
2000-03-26 05:04:51 +02:00
|
|
|
RSA *rsa;
|
|
|
|
DSA *dsa;
|
|
|
|
};
|
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
Key *key_new(int);
|
|
|
|
Key *key_new_private(int);
|
2001-07-04 06:46:56 +02:00
|
|
|
void key_free(Key *);
|
|
|
|
int key_equal(Key *, Key *);
|
2001-07-04 06:02:36 +02:00
|
|
|
char *key_fingerprint(Key *, enum fp_type, enum fp_rep);
|
|
|
|
char *key_type(Key *);
|
2001-07-04 06:46:56 +02:00
|
|
|
int key_write(Key *, FILE *);
|
|
|
|
int key_read(Key *, char **);
|
|
|
|
u_int key_size(Key *);
|
2000-11-13 12:57:25 +01:00
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
Key *key_generate(int, u_int);
|
|
|
|
Key *key_from_private(Key *);
|
2001-07-04 06:46:56 +02:00
|
|
|
int key_type_from_name(char *);
|
2000-11-13 12:57:25 +01:00
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
Key *key_from_blob(char *, int);
|
2001-07-04 06:46:56 +02:00
|
|
|
int key_to_blob(Key *, u_char **, u_int *);
|
2001-07-04 06:02:36 +02:00
|
|
|
char *key_ssh_name(Key *);
|
2001-07-04 06:46:56 +02:00
|
|
|
int key_names_valid2(const char *);
|
2000-11-13 12:57:25 +01:00
|
|
|
|
2001-07-04 06:46:56 +02:00
|
|
|
int key_sign(Key *, u_char **, int *, u_char *, int);
|
|
|
|
int key_verify(Key *, u_char *, int, u_char *, int);
|
2000-03-26 05:04:51 +02:00
|
|
|
|
|
|
|
#endif
|