summaryrefslogtreecommitdiff
path: root/ssh-rsa.c
diff options
context:
space:
mode:
authordjm <djm>2010-07-16 03:58:37 +0000
committerdjm <djm>2010-07-16 03:58:37 +0000
commit2aedb10c2be7e950118df65df32462400d181ba0 (patch)
tree2e27928c075af37c7fcd3d01789240cd23c78e48 /ssh-rsa.c
parent25bf33af15a1692f855404509fde615f52ac1e9b (diff)
downloadopenssh-2aedb10c2be7e950118df65df32462400d181ba0.tar.gz
- djm@cvs.openbsd.org 2010/07/13 23:13:16
[auth-rsa.c channels.c jpake.c key.c misc.c misc.h monitor.c packet.c] [ssh-rsa.c] s/timing_safe_cmp/timingsafe_bcmp/g
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 01f27f52..e3f15615 100644
--- a/ssh-rsa.c
+++ b/ssh-rsa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-rsa.c,v 1.42 2010/07/13 11:52:06 djm Exp $ */
+/* $OpenBSD: ssh-rsa.c,v 1.43 2010/07/13 23:13:16 djm Exp $ */
/*
* Copyright (c) 2000, 2003 Markus Friedl <markus@openbsd.org>
*
@@ -250,11 +250,11 @@ openssh_RSA_verify(int type, u_char *hash, u_int hashlen,
error("bad decrypted len: %d != %d + %d", len, hlen, oidlen);
goto done;
}
- if (timing_safe_cmp(decrypted, oid, oidlen) != 0) {
+ if (timingsafe_bcmp(decrypted, oid, oidlen) != 0) {
error("oid mismatch");
goto done;
}
- if (timing_safe_cmp(decrypted + oidlen, hash, hlen) != 0) {
+ if (timingsafe_bcmp(decrypted + oidlen, hash, hlen) != 0) {
error("hash mismatch");
goto done;
}