RSA_BLINDING_ON(3) OpenSSL RSA_BLINDING_ON(3)
RSA_blinding_on, RSA_blinding_off - protect the RSA opera-
tion from timing attacks
#include <openssl/rsa.h>
int RSA_blinding_on(RSA *rsa, BN_CTX *ctx);
void RSA_blinding_off(RSA *rsa);
RSA is vulnerable to timing attacks. In a setup where
attackers can measure the time of RSA decryption or signa-
ture operations, blinding must be used to protect the RSA
operation from that attack.
RSA_blinding_on() turns blinding on for key rsa and gen-
erates a random blinding factor. ctx is NULL or a pre-
allocated and initialized BN_CTX. The random number genera-
tor must be seeded prior to calling RSA_blinding_on().
RSA_blinding_off() turns blinding off and frees the memory
used for the blinding factor.
RSA_blinding_on() returns 1 on success, and 0 if an error
occurred.
RSA_blinding_off() returns no value.
rsa(3), rand(3)
RSA_blinding_on() and RSA_blinding_off() appeared in SSLeay
0.9.0.
MirOS BSD #10-current 2005-02-05 1
Generated on 2012-02-20 02:47:02 by $MirOS: src/scripts/roff2htm,v 1.70 2011/12/03 18:21:12 tg Exp $
These manual pages and other documentation are copyrighted by their respective writers;
their source is available at our CVSweb,
AnonCVS, and other mirrors. The rest is Copyright © 2002‒2011 The MirOS Project, Germany.
This product includes material
provided by Thorsten Glaser.
This manual page’s HTML representation is supposed to be valid XHTML/1.1; if not, please send a bug report – diffs preferred.