diff options
author | Damien Miller <djm@mindrot.org> | 2003-02-24 02:01:40 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2003-02-24 02:01:40 +0100 |
commit | e8a240f966c567304d810ba0234bca326e4abecb (patch) | |
tree | 3de903c87fc6cdcae4a631f1c7670cc5c8a7b643 /key.h | |
parent | - markus@cvs.openbsd.org 2003/02/10 11:51:47 (diff) | |
download | openssh-e8a240f966c567304d810ba0234bca326e4abecb.tar.xz openssh-e8a240f966c567304d810ba0234bca326e4abecb.zip |
- markus@cvs.openbsd.org 2003/02/12 09:33:04
[key.c key.h ssh-dss.c ssh-rsa.c]
merge ssh-dss.h ssh-rsa.h into key.h; ok deraadt@
Diffstat (limited to 'key.h')
-rw-r--r-- | key.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: key.h,v 1.19 2002/03/18 17:23:31 markus Exp $ */ +/* $OpenBSD: key.h,v 1.20 2003/02/12 09:33:04 markus Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -78,4 +78,9 @@ int key_names_valid2(const char *); int key_sign(Key *, u_char **, u_int *, u_char *, u_int); int key_verify(Key *, u_char *, u_int, u_char *, u_int); +int ssh_dss_sign(Key *, u_char **, u_int *, u_char *, u_int); +int ssh_dss_verify(Key *, u_char *, u_int, u_char *, u_int); +int ssh_rsa_sign(Key *, u_char **, u_int *, u_char *, u_int); +int ssh_rsa_verify(Key *, u_char *, u_int, u_char *, u_int); + #endif |