projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a9ef75c
)
Bug fix for 64 bit HP-UX.
author
Ulf Möller
<ulf@openssl.org>
Thu, 1 Jun 2000 14:24:59 +0000
(14:24 +0000)
committer
Ulf Möller
<ulf@openssl.org>
Thu, 1 Jun 2000 14:24:59 +0000
(14:24 +0000)
Submitted by: Karsten Spang <ks@bellesystems.com>
crypto/rsa/rsa_gen.c
patch
|
blob
|
history
diff --git
a/crypto/rsa/rsa_gen.c
b/crypto/rsa/rsa_gen.c
index 95e636d3f0233e3148e13c545d626539e5ccc8a7..00c25adbc588485e022a9a0b1608ca0b6ce16ba2 100644
(file)
--- a/
crypto/rsa/rsa_gen.c
+++ b/
crypto/rsa/rsa_gen.c
@@
-95,7
+95,7
@@
RSA *RSA_generate_key(int bits, unsigned long e_value,
* unsigned long can be larger */
for (i=0; i<sizeof(unsigned long)*8; i++)
{
- if (e_value & (1<<i))
+ if (e_value & (1
UL
<<i))
BN_set_bit(rsa->e,i);
}
#else