aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/asymmetric/rsa.rst
Commit message (Collapse)AuthorAgeFilesLines
* Use the contents of the ecrypt docs from the University website (#4673)Alex Gaynor2019-01-021-1/+1
|
* Colin's website went HTTPS! (#4515)Alex Gaynor2018-10-241-2/+2
|
* switch to py3 on docs job (#4230)Paul Kehrer2018-05-121-3/+3
| | | | | | * switch to py3 on docs job * somehow unicode isn't a word
* switch RSA OAEP examples to use SHA256 (#4117)Paul Kehrer2018-02-221-4/+4
|
* Add import default backend (#4061)Pablo Lefort2017-12-201-0/+1
| | | | | | * Add import default backend * Revert blank line in
* let's talk about bits baby (#3956)Paul Kehrer2017-10-111-4/+4
|
* Fix mistake in `RSAPublicKey.verify` documentation (#3872)David Sanders2017-08-201-1/+1
|
* doc the relationship between PrivateKey and PrivateKeyWithSerialization (#3721)Paul Kehrer2017-06-241-2/+6
| | | | | | | | * doc the relationship between PrivateKey and PrivateKeyWithSerialization Or at least do it better. * let's talk about opaque keys
* be clearer that 65537 is the right answer (#3714)Paul Kehrer2017-06-231-1/+2
| | | | | | | | * be clearer that 65537 is the right answer * Different language * remove trailing whitespace
* deprecate signer/verifier on asymmetric keys (#3663)Paul Kehrer2017-06-031-57/+34
| | | | | | * deprecate signer/verifier on asymmetric keys * review feedback, switch deprecated_call to work around a bug
* support RSA verify with prehashing (#3265)Paul Kehrer2016-11-201-1/+6
| | | | | | | | | | * support RSA verify with prehashing * review feedback * more dedupe * refactor and move to a separate module
* support prehashing in RSA sign (#3238)Paul Kehrer2016-11-201-1/+6
| | | | | | | | * support prehashing in RSA sign * check to make sure digest size matches prehashed data provided * move doctest for prehashed
* Removed provider language from asymmetric primitives docs (#3052)Gabriel Orisaka2016-07-261-46/+31
| | | | | | * Removed provider language from asymmetric primitives docs * Reverted changes to some examples
* Enforce that p > q to improve OpenSSL compatibility (fixes #2990) (#3010)Dirkjan Ochtman2016-07-191-1/+3
|
* one shot verify documentation fix (#3031)Aviv Palivoda2016-06-301-2/+2
|
* Fixed #3008 -- expose calculate max pss salt length (#3014)Alex Gaynor2016-06-271-4/+17
| | | | | | | | | | | | | | * Fixed #3008 -- expose calculate max pss salt length * Fixed a few mistakes in the docs * move all the code around * oops * write a unit test * versionadded + changelog
* rest syntaxAlex Gaynor2016-06-271-1/+1
|
* Use `d` instead of `private_exponent` for consistency (#2991)Dirkjan Ochtman2016-06-221-4/+4
| | | | True story: I used `e` instead of `d` because it seemed more closely related to `e`. Should have looked it up, of course... but the docs could be better.
* Add convenience methods to sign and verify w/ RSA (#2945)Colleen Murphy2016-06-041-3/+73
| | | | | | | | | This patch adds wrapper methods to allow the user to sign and verify a single message block without having to go through the multi-step process of creating a signer or verifier, updating it with the one message, and finalizing the result. This will make signing and verifying data more user-friendly when only using small messages. Partial bug #1529
* HTTPS some links, in the odd event users of a cryptographic library would ↵Alex Gaynor2016-03-061-1/+1
| | | | care about authentication, integrity, or confidentiality
* Minor doc tweak per issue #2694Phoebe Queen2016-01-291-1/+5
|
* address review commentsPaul Kehrer2015-10-121-1/+3
|
* add some links to public key loading in the RSA/DSA verification sectionsPaul Kehrer2015-10-121-3/+7
|
* a few more fixesAlex Gaynor2015-10-021-1/+1
|
* some commas that look correctAlex Gaynor2015-09-241-1/+1
|
* docs changes based on feedbackPaul Kehrer2015-07-041-1/+1
|
* relink some thingsPaul Kehrer2015-07-041-4/+2
|
* move PublicKeyWithSerialization methods to PublicKeyPaul Kehrer2015-07-041-7/+7
|
* remove docs for WithNumbers classes that are removed in 1.0Paul Kehrer2015-07-041-34/+0
|
* update a link that has been permanently redirectedPaul Kehrer2015-04-171-1/+1
|
* update ecrypt link in docsPaul Kehrer2015-03-301-1/+1
|
* support RSA public key serializationPaul Kehrer2015-03-071-1/+54
|
* s/Format/PrivateFormatPaul Kehrer2015-03-011-6/+7
|
* change as_bytes to private_bytes, link more thingsPaul Kehrer2015-02-281-4/+4
|
* linkify some things per review, fix an importPaul Kehrer2015-02-281-2/+8
|
* add more docs stuff from review that I missedPaul Kehrer2015-02-271-1/+1
|
* address review feedbackPaul Kehrer2015-02-271-5/+9
|
* rename dump to as_bytesPaul Kehrer2015-02-251-5/+5
|
* fix docsPaul Kehrer2015-02-251-5/+5
|
* address review commentsPaul Kehrer2015-02-251-8/+12
|
* Support for traditional OpenSSL and PKCS8 RSA private key serializationPaul Kehrer2015-02-251-0/+62
|
* move asymmetric signature/verification interfacesPaul Kehrer2015-02-161-2/+2
|
* move asymmetric padding interface to primitives.asymmetric.paddingPaul Kehrer2015-02-161-5/+11
|
* move hash interfacesPaul Kehrer2015-02-131-3/+3
|
* make our docs job nitpicky and fix every broken linkPaul Kehrer2015-02-121-5/+5
|
* Move RSA*Key interfaces to cryptography.hazmat.primitives.asymmetric.rsaAlex Stapleton2015-01-241-3/+140
|
* doc updatePaul Kehrer2015-01-181-2/+2
|
* various improvements to rsa_recover_prime_factors per review feedbackPaul Kehrer2015-01-181-4/+3
|
* recover (p, q) given (n, e, d). fixes #975Paul Kehrer2015-01-181-0/+15
|
* Bump some more yearsAlex Gaynor2015-01-081-1/+1
|