summaryrefslogtreecommitdiff
path: root/ssh-rsa.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-11-12 11:07:35 +1100
committerDamien Miller <djm@mindrot.org>2001-11-12 11:07:35 +1100
commiteacff8533e93a2df7a6b4f43ddb51a0d8be775cb (patch)
treea7a6cafe12d814a11afdfca5bca44a78da29ba39 /ssh-rsa.c
parent6a4a4b9290d49016f4410261575b6fbb7ee2543e (diff)
- markus@cvs.openbsd.org 2001/11/10 13:22:42
[ssh-rsa.c] KNF (unexpand)
Diffstat (limited to 'ssh-rsa.c')
-rw-r--r--ssh-rsa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ssh-rsa.c b/ssh-rsa.c
index 6fd47287c..a6a703b95 100644
--- a/ssh-rsa.c
+++ b/ssh-rsa.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: ssh-rsa.c,v 1.12 2001/11/07 22:10:28 markus Exp $"); 26RCSID("$OpenBSD: ssh-rsa.c,v 1.13 2001/11/10 13:22:42 markus Exp $");
27 27
28#include <openssl/evp.h> 28#include <openssl/evp.h>
29#include <openssl/err.h> 29#include <openssl/err.h>
@@ -54,7 +54,7 @@ ssh_rsa_sign(
54 error("ssh_rsa_sign: no RSA key"); 54 error("ssh_rsa_sign: no RSA key");
55 return -1; 55 return -1;
56 } 56 }
57 if (datafellows & SSH_BUG_SIGBLOB) { 57 if (datafellows & SSH_BUG_SIGBLOB) {
58 error("ssh_rsa_sign: SSH_BUG_SIGBLOB not supported"); 58 error("ssh_rsa_sign: SSH_BUG_SIGBLOB not supported");
59 return -1; 59 return -1;
60 } 60 }
@@ -128,7 +128,7 @@ ssh_rsa_verify(
128 error("ssh_rsa_verify: no RSA key"); 128 error("ssh_rsa_verify: no RSA key");
129 return -1; 129 return -1;
130 } 130 }
131 if (datafellows & SSH_BUG_SIGBLOB) { 131 if (datafellows & SSH_BUG_SIGBLOB) {
132 error("ssh_rsa_verify: SSH_BUG_SIGBLOB not supported"); 132 error("ssh_rsa_verify: SSH_BUG_SIGBLOB not supported");
133 return -1; 133 return -1;
134 } 134 }