diff options
author | 2010-07-13 23:13:16 +0000 | |
---|---|---|
committer | 2010-07-13 23:13:16 +0000 | |
commit | 5bde9fcce2cc1dbef5392b2845e5f631b157e090 (patch) | |
tree | fd0c1e0a10368da6c8a5fede506d9c5a80af5118 /usr.bin/ssh/ssh-rsa.c | |
parent | update our recommended hash function to sha256 and note md5 is broken. (diff) | |
download | wireguard-openbsd-5bde9fcce2cc1dbef5392b2845e5f631b157e090.tar.xz wireguard-openbsd-5bde9fcce2cc1dbef5392b2845e5f631b157e090.zip |
s/timing_safe_cmp/timingsafe_bcmp/g
Diffstat (limited to 'usr.bin/ssh/ssh-rsa.c')
-rw-r--r-- | usr.bin/ssh/ssh-rsa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh-rsa.c b/usr.bin/ssh/ssh-rsa.c index dbb31d83143..08ee9e290ac 100644 --- a/usr.bin/ssh/ssh-rsa.c +++ b/usr.bin/ssh/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> * @@ -247,11 +247,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; } |