diff options
| author | Steven Fackler <[email protected]> | 2018-09-02 14:26:27 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2018-09-02 14:26:27 -0700 |
| commit | 947dfbd1431cf85cea0170639fcc4f3d796cfaf5 (patch) | |
| tree | 78837e05e4e626f90c0a940ee6bf983ee8ec5095 /openssl/src/rsa.rs | |
| parent | Merge pull request #982 from sfackler/fix-sni-callback (diff) | |
| download | rust-openssl-947dfbd1431cf85cea0170639fcc4f3d796cfaf5.tar.xz rust-openssl-947dfbd1431cf85cea0170639fcc4f3d796cfaf5.zip | |
Small cleanup
Closes #981
Diffstat (limited to 'openssl/src/rsa.rs')
| -rw-r--r-- | openssl/src/rsa.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/src/rsa.rs b/openssl/src/rsa.rs index d2131d28..938b97db 100644 --- a/openssl/src/rsa.rs +++ b/openssl/src/rsa.rs @@ -3,7 +3,7 @@ //! RSA is one of the earliest asymmetric public key encryption schemes. //! Like many other cryptosystems, RSA relies on the presumed difficulty of a hard //! mathematical problem, namely factorization of the product of two large prime -//! numbers. At the moment there does exist an algorithm that can factor such +//! numbers. At the moment there does not exist an algorithm that can factor such //! large numbers in reasonable time. RSA is used in a wide variety of //! applications including digital signatures and key exchanges such as //! establishing a TLS/SSL connection. |