From 14db3744ba1c057264ac697c61beb8b7f248f4e8 Mon Sep 17 00:00:00 2001 From: myheroyuki Date: Sat, 27 Jan 2024 01:58:48 +0900 Subject: [PATCH] Language correction --- doc/usage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/usage.rst b/doc/usage.rst index 87e94ef..946014e 100644 --- a/doc/usage.rst +++ b/doc/usage.rst @@ -40,7 +40,7 @@ Alternatively you can use :py:meth:`rsa.PrivateKey.load_pkcs1` and ... keydata = privatefile.read() >>> privkey = rsa.PrivateKey.load_pkcs1(keydata) -PKCS#1 v2.1 allows you to generate RSA keys with multiple primes: +Python-RSA also allows you to generate RSA keys with multiple primes: >>> import rsa >>> (pubkey, privkey) = rsa.newkeys(512, nprimes=3)