diff options
Diffstat (limited to 'ssh-rsa.c')
-rw-r--r-- | ssh-rsa.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssh-rsa.c,v 1.42 2010/07/13 11:52:06 djm Exp $ */ | 1 | /* $OpenBSD: ssh-rsa.c,v 1.43 2010/07/13 23:13:16 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2000, 2003 Markus Friedl <markus@openbsd.org> | 3 | * Copyright (c) 2000, 2003 Markus Friedl <markus@openbsd.org> |
4 | * | 4 | * |
@@ -250,11 +250,11 @@ openssh_RSA_verify(int type, u_char *hash, u_int hashlen, | |||
250 | error("bad decrypted len: %d != %d + %d", len, hlen, oidlen); | 250 | error("bad decrypted len: %d != %d + %d", len, hlen, oidlen); |
251 | goto done; | 251 | goto done; |
252 | } | 252 | } |
253 | if (timing_safe_cmp(decrypted, oid, oidlen) != 0) { | 253 | if (timingsafe_bcmp(decrypted, oid, oidlen) != 0) { |
254 | error("oid mismatch"); | 254 | error("oid mismatch"); |
255 | goto done; | 255 | goto done; |
256 | } | 256 | } |
257 | if (timing_safe_cmp(decrypted + oidlen, hash, hlen) != 0) { | 257 | if (timingsafe_bcmp(decrypted + oidlen, hash, hlen) != 0) { |
258 | error("hash mismatch"); | 258 | error("hash mismatch"); |
259 | goto done; | 259 | goto done; |
260 | } | 260 | } |