Sign in
boringssl
/
boringssl.git
/
bf5aa846d6c4e055f9ead2e091c8a226bf0f56de
/
crypto
/
rsa
1c25654
RSA_marshal_private_key: add missing CBB_flush()
by Matt Braithwaite
· 9 years ago
10f97f3
Revert "Move C++ helpers into |bssl| namespace."
by Adam Langley
· 9 years ago
d2b5af5
Revert scoped_types.h change.
by Adam Langley
· 9 years ago
8c3c313
Remove scoped_types.h.
by Adam Langley
· 9 years ago
09feb0f
Move C++ helpers into |bssl| namespace.
by Adam Langley
· 9 years ago
29270de
Split unlock functions into read/write variants.
by David Benjamin
· 9 years ago
598e55a
Do RSA blinding unless |e| is NULL and specifically requested not to.
by Brian Smith
· 9 years ago
86080c3
Verify RSA private key operation regardless of whether CRT is used.
by Brian Smith
· 9 years ago
86361a3
Require the public exponent to be available in RSA blinding.
by Brian Smith
· 9 years ago
d035730
Make return value of |BN_MONT_CTX_set_locked| int.
by Brian Smith
· 9 years ago
51b0d5b
Do not use the CRT when |rsa->e == NULL|.
by Brian Smith
· 9 years ago
69f0532
Use |memcmp| instead of |CRYPTO_memcmp| in |RSA_verify|.
by Brian Smith
· 9 years ago
2a92031
Clarify |RSA_verify_raw| error handling & cleanup.
by Brian Smith
· 9 years ago
9902262
Remove redundant check of |sig_len| in |RSA_verify|.
by Brian Smith
· 9 years ago
c0b196d
Drop support for engines-provided signature verification.
by Brian Smith
· 9 years ago
9819367
Remove some easy obj.h dependencies.
by David Benjamin
· 9 years ago
d879e29
Further optimize Montgomery math in RSA blinding.
by Brian Smith
· 9 years ago
f08c1c6
Drop support for custom |mod_exp| hooks in |RSA_METHOD|.
by Brian Smith
· 9 years ago
3426d10
Convert RSA blinding to use Montgomery multiplication.
by Brian Smith
· 9 years ago
2aca226
Fix typo in comment.
by David Benjamin
· 9 years ago
db50299
Add tests for RSA objects with only n and d.
by David Benjamin
· 9 years ago
cbf56a5
Clarify lifecycle of |BN_BLINDING|.
by Brian Smith
· 9 years ago
24493a4
Always cache Montgomery contexts in RSA.
by Brian Smith
· 9 years ago
95b9769
Fix error handling in |bn_blinding_update|.
by Brian Smith
· 9 years ago
7cf6085
Check for |BN_CTX_new| failure in |mod_exp|.
by Brian Smith
· 9 years ago
9bb8ba6
Make local functions static.
by Piotr Sikora
· 9 years ago
9aa1562
Remove unnecessary type casts in crypto/rsa.
by Brian Smith
· 9 years ago
a2f2bc3
Align with upstream's error strings, take two.
by David Benjamin
· 9 years ago
cfa9de8
Revert "Revert "Reduce maximum RSA public exponent size to 33 bits.""
by David Benjamin
· 9 years ago
fb8e678
Match upstream's error codes for the old sigalg code.
by David Benjamin
· 9 years ago
ba70118
Revert "Reduce maximum RSA public exponent size to 33 bits."
by David Benjamin
· 9 years ago
617804a
Always use |BN_mod_exp_mont|/|BN_mod_exp_mont_consttime| in RSA.
by Brian Smith
· 9 years ago
1b0c438
Fix i2d_RSAPrivateKey, i2d_RSAPublicKey memory leaks
by Emily Stark
· 9 years ago
b944882
Reduce maximum RSA public exponent size to 33 bits.
by Brian Smith
· 9 years ago
17727c6
Move all signature algorithm code to crypto/x509.
by David Benjamin
· 9 years ago
d3a4995
Add missing " in comment.
by David Benjamin
· 9 years ago
f4ef9b5
otherPrimeInfos is not optional in version 1 RSAPrivateKeys.
by David Benjamin
· 9 years ago
bd42603
Add a convenience function for i2d compatibility wrappers.
by David Benjamin
· 9 years ago
894a47d
Clarify some confusing casts involving |size_t|.
by Brian Smith
· 9 years ago
5ba0689
Don't cast |OPENSSL_malloc|/|OPENSSL_realloc| result.
by Brian Smith
· 9 years ago
46a4d6d
Remove out-of-date and misleading comment in |bn_blinding_st|.
by Brian Smith
· 9 years ago
642b0b8
Remove unused bits of RSA blinding code.
by Brian Smith
· 9 years ago
acb2451
Rename the BIGNUM ASN.1 functions.
by David Benjamin
· 9 years ago
34749f4
Remove unnecessary assignment of |e| in |rsa_setup_blinding|.
by Brian Smith
· 9 years ago
625475f
Fix bits vs. bytes confusion in RSA encryption.
by Brian Smith
· 9 years ago
3f5b43d
Simplify RSA key exchange padding check.
by David Benjamin
· 9 years ago
3ef6085
Refuse to parse RSA pubkeys with invalid exponents.
by Luke Granger-Brown
· 9 years ago
8a58933
Remove the CRYPTO_EX_new callback.
by David Benjamin
· 9 years ago
756ad17
Initialize |one_index| in OAEP padding check.
by David Benjamin
· 9 years ago
1634a33
Convert rsa/padding.c to constant-time helpers.
by David Benjamin
· 9 years ago
60a45aa
Remove reference to removed |RSA_FLAG_NO_CONSTTIME| flag.
by Brian Smith
· 9 years ago
e82e6f6
Constify more BN_MONT_CTX parameters.
by David Benjamin
· 9 years ago
8fb0f52
Free BN_MONT_CTX in generic code.
by David Benjamin
· 9 years ago
bb87535
Fix ASan bot.
by David Benjamin
· 9 years ago
d93831d
Make it possible for a static linker to discard unused RSA functions.
by David Benjamin
· 9 years ago
96b9f3b
Switch rsa_test.cc to use the new RSA encrypt/decrypt API.
by Brian Smith
· 9 years ago
96c2a28
Fix all sign/unsigned warnings with Clang and GCC.
by Adam Langley
· 10 years ago
301afaf
Add a run_tests target to run all tests.
by David Benjamin
· 9 years ago
ccf2517
Only emit RSA_R_BAD_VERSION on bad RSAPrivateKey versions.
by David Benjamin
· 9 years ago
79680ff
Fix various malloc failure codepaths.
by David Benjamin
· 9 years ago
978f16e
size_t RSA functions.
by Matt Braithwaite
· 9 years ago
a655c73
Switch rsa_test.cc to use new RSA private key parsing API.
by Brian Smith
· 9 years ago
b86b0f2
RT 3493: fix RSA test
by David Benjamin
· 10 years ago
79c59a3
size_t RSA_private_decrypt's input.
by David Benjamin
· 10 years ago
4c60d35
Work around even more Estonian ID card misissuances.
by David Benjamin
· 10 years ago
c71567d
Update the Estonian workaround comments.
by David Benjamin
· 10 years ago
231cb82
Work around broken Estonian smart cards. Again.
by David Benjamin
· 10 years ago
626c686
Initialise |supports_digest|.
by Adam Langley
· 10 years ago
06fa67c
Stop using |ERR_peek_last_error| in RSA blinding.
by Adam Langley
· 10 years ago
73415b6
Move arm_arch.h and fix up lots of include paths.
by Adam Langley
· 10 years ago
74279b6
Avoid a copy when using RSA_PADDING_NONE.
by David Benjamin
· 11 years ago
02e1834
Make |RSA_PSS_PARAMS| public.
by Matt Braithwaite
· 10 years ago
f4bbc2a
Improve error checking of some |BN_CTX_get| callers.
by Brian Smith
· 10 years ago
3570d73
Remove the func parameter to OPENSSL_PUT_ERROR.
by David Benjamin
· 10 years ago
27dc1cd
Remove RSA_OAEP_PARAMS.
by David Benjamin
· 10 years ago
74f7110
Parse RSAPrivateKey with CBS.
by David Benjamin
· 10 years ago
c0e245a
Parse RSAPublicKey with CBS.
by David Benjamin
· 10 years ago
d633071
Re-wrap kOAEPCipherText from rsa_test.
by David Benjamin
· 10 years ago
cb41d77
Fix kTwoPrimeKey and kSixPrimeKey samples in rsa_test.
by David Benjamin
· 10 years ago
b0acb77
Export pkcs1_prefixed_msg as RSA_add_pkcs1_prefix.
by David Benjamin
· 10 years ago
1c703cb
Check for BN_copy failures.
by David Benjamin
· 10 years ago
c7a3a14
Convert rsa_test to C++.
by David Benjamin
· 10 years ago
1a3c232
Fix build.
by David Benjamin
· 10 years ago
839b881
Multi-prime RSA support.
by Adam Langley
· 10 years ago
0b635c5
Add malloc test support to unit tests.
by David Benjamin
· 10 years ago
0da323a
Convert reference counts in crypto/
by Adam Langley
· 10 years ago
d8b65c8
Remove unnecessary NULL checks, part 4.
by David Benjamin
· 10 years ago
9f33fc6
Remove hash table lookups from ex_data.
by David Benjamin
· 10 years ago
c3ef76f
Compatibility changes for wpa_supplicant and OpenSSH.
by Adam Langley
· 10 years ago
683d7bd
Convert BN_MONT_CTX to new-style locking.
by Adam Langley
· 10 years ago
c82a00d
Replace MD5 in examples with SHA-256.
by Brian Smith
· 10 years ago
054e682
Eliminate unnecessary includes from low-level crypto modules.
by Brian Smith
· 10 years ago
a039d70
Enable MSVC warning C4701, use of potentially uninitialized variable.
by Brian Smith
· 10 years ago
83a8298
Rename BIO_print_errors_fp back to ERR_print_errors_fp & refactor it.
by Brian Smith
· 10 years ago
3367273
Get rid of the THREADID stuff.
by Adam Langley
· 10 years ago
20b64fd
Export the PSS padding functions.
by Adam Langley
· 10 years ago
ab2479a
Clean up error reporting.
by Håvard Molland
· 10 years ago
a42b416
Remove remaining remnants of RIPEMD-160 support.
by Brian Smith
· 10 years ago
28120a1
Fix mistaken use of CRYPTO_EX_INDEX_DSA in rsa.c.
by Brian Smith
· 10 years ago
5f5bf6f
Don't add another error to the queue when RSA_private_transform fails.
by Adam Langley
· 10 years ago
Next »