diff options
Diffstat (limited to 'key.c')
-rw-r--r-- | key.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: key.c,v 1.89 2010/07/13 11:52:06 djm Exp $ */ | 1 | /* $OpenBSD: key.c,v 1.90 2010/07/13 23:13:16 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * read_bignum(): | 3 | * read_bignum(): |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -228,7 +228,7 @@ cert_compare(struct KeyCert *a, struct KeyCert *b) | |||
228 | return 0; | 228 | return 0; |
229 | if (buffer_len(&a->certblob) != buffer_len(&b->certblob)) | 229 | if (buffer_len(&a->certblob) != buffer_len(&b->certblob)) |
230 | return 0; | 230 | return 0; |
231 | if (timing_safe_cmp(buffer_ptr(&a->certblob), buffer_ptr(&b->certblob), | 231 | if (timingsafe_bcmp(buffer_ptr(&a->certblob), buffer_ptr(&b->certblob), |
232 | buffer_len(&a->certblob)) != 0) | 232 | buffer_len(&a->certblob)) != 0) |
233 | return 0; | 233 | return 0; |
234 | return 1; | 234 | return 1; |