diff options
author | 2014-07-10 11:04:49 +0000 | |
---|---|---|
committer | 2014-07-10 11:04:49 +0000 | |
commit | 52a628eead2477e1c97bcdc6f376c2210a043521 (patch) | |
tree | 77f17de18467249ce3a329e01017353fdd8f327c /lib/libssl | |
parent | introduce the revolutionary concept of NULL pointers. ok gcc (diff) | |
download | wireguard-openbsd-52a628eead2477e1c97bcdc6f376c2210a043521.tar.xz wireguard-openbsd-52a628eead2477e1c97bcdc6f376c2210a043521.zip |
Remove RSA_FLAG_NO_EXP_CONSTTIME, which was deprecated 12+ years ago.
sthen@ confirmed that no ports are referencing it.
ok miod@.
Diffstat (limited to 'lib/libssl')
-rw-r--r-- | lib/libssl/src/crypto/rsa/rsa.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/lib/libssl/src/crypto/rsa/rsa.h b/lib/libssl/src/crypto/rsa/rsa.h index 0cd51a7e299..fdfd29c33ad 100644 --- a/lib/libssl/src/crypto/rsa/rsa.h +++ b/lib/libssl/src/crypto/rsa/rsa.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rsa.h,v 1.22 2014/07/09 20:05:54 jsing Exp $ */ +/* $OpenBSD: rsa.h,v 1.23 2014/07/10 11:04:49 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -202,18 +202,6 @@ struct rsa_st { */ #define RSA_FLAG_NO_CONSTTIME 0x0100 -#ifndef OPENSSL_NO_DEPRECATED - -/* Deprecated name for the flag. */ -/* - * New with 0.9.7h; the built-in RSA implementation now uses constant time - * modular exponentiation for secret exponents by default. This flag causes - * the faster variable sliding window method to be used for all exponents. - */ -#define RSA_FLAG_NO_EXP_CONSTTIME RSA_FLAG_NO_CONSTTIME - -#endif - #define EVP_PKEY_CTX_set_rsa_padding(ctx, pad) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, -1, EVP_PKEY_CTRL_RSA_PADDING, \ |