]> andersk Git - openssh.git/blame - key.h
- markus@cvs.openbsd.org 2001/03/11 13:25:36
[openssh.git] / key.h
CommitLineData
23c2a7a5 1/* $OpenBSD: key.h,v 1.9 2001/01/29 01:58:16 niklas Exp $ */
2
bcbf86ec 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
5 *
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 */
4fe2af09 26#ifndef KEY_H
27#define KEY_H
28
42f11eb2 29#include <openssl/rsa.h>
30#include <openssl/dsa.h>
31
4fe2af09 32typedef struct Key Key;
33enum types {
fa08c86b 34 KEY_RSA1,
4fe2af09 35 KEY_RSA,
36 KEY_DSA,
fa08c86b 37 KEY_UNSPEC
4fe2af09 38};
39struct Key {
40 int type;
41 RSA *rsa;
42 DSA *dsa;
43};
44
45Key *key_new(int type);
fa08c86b 46Key *key_new_private(int type);
4fe2af09 47void key_free(Key *k);
48int key_equal(Key *a, Key *b);
49char *key_fingerprint(Key *k);
1d1ffb87 50char *key_type(Key *k);
4fe2af09 51int key_write(Key *key, FILE *f);
fa08c86b 52int key_read(Key *key, char **cpp);
53u_int key_size(Key *k);
54
1e3b8b07 55Key *key_generate(int type, u_int bits);
fa08c86b 56Key *key_from_private(Key *k);
57int key_type_from_name(char *name);
58
59Key *key_from_blob(char *blob, int blen);
1e3b8b07 60int key_to_blob(Key *key, u_char **blobp, u_int *lenp);
fa08c86b 61char *key_ssh_name(Key *k);
62
63int
64key_sign(
65 Key *key,
1e3b8b07 66 u_char **sigp, int *lenp,
67 u_char *data, int datalen);
fa08c86b 68
69int
70key_verify(
71 Key *key,
1e3b8b07 72 u_char *signature, int signaturelen,
73 u_char *data, int datalen);
4fe2af09 74
75#endif
This page took 3.079715 seconds and 5 git commands to generate.