diff options
author | markus@openbsd.org <markus@openbsd.org> | 2015-12-04 16:41:28 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-12-07 12:38:58 +1100 |
commit | 76c9fbbe35aabc1db977fb78e827644345e9442e (patch) | |
tree | e7c85e7e1471f1bd00b3a50a58e315c055f40b86 /key.h | |
parent | 6064a8b8295cb5a17b5ebcfade53053377714f40 (diff) |
upstream commit
implement SHA2-{256,512} for RSASSA-PKCS1-v1_5 signatures
(user and host auth) based on draft-rsa-dsa-sha2-256-03.txt and
draft-ssh-ext-info-04.txt; with & ok djm@
Upstream-ID: cf82ce532b2733e5c4b34bb7b7c94835632db309
Diffstat (limited to 'key.h')
-rw-r--r-- | key.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: key.h,v 1.48 2015/07/03 03:43:18 djm Exp $ */ | 1 | /* $OpenBSD: key.h,v 1.49 2015/12/04 16:41:28 markus Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. | 4 | * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. |
@@ -84,7 +84,8 @@ int key_ec_validate_private(const EC_KEY *); | |||
84 | Key *key_from_blob(const u_char *, u_int); | 84 | Key *key_from_blob(const u_char *, u_int); |
85 | int key_to_blob(const Key *, u_char **, u_int *); | 85 | int key_to_blob(const Key *, u_char **, u_int *); |
86 | 86 | ||
87 | int key_sign(const Key *, u_char **, u_int *, const u_char *, u_int); | 87 | int key_sign(const Key *, u_char **, u_int *, const u_char *, u_int, |
88 | const char *); | ||
88 | int key_verify(const Key *, const u_char *, u_int, const u_char *, u_int); | 89 | int key_verify(const Key *, const u_char *, u_int, const u_char *, u_int); |
89 | 90 | ||
90 | void key_private_serialize(const Key *, struct sshbuf *); | 91 | void key_private_serialize(const Key *, struct sshbuf *); |