From 432232013d5383fcfe91a4fe91795891180a4a65 Mon Sep 17 00:00:00 2001 From: Ysy Date: Thu, 31 May 2018 03:06:45 +0800 Subject: [PATCH] Update README.md (#120) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c45a9c..f1108e0 100644 --- a/README.md +++ b/README.md @@ -165,7 +165,7 @@ let isSuccessful = try clear.verify(with: publicKey, signature: signature, diges ### Create a public/private RSA key pair ```swift -let keyPair = SwiftRSA.generateRSAKeyPair(sizeInBits: 2048) +let keyPair = SwiftyRSA.generateRSAKeyPair(sizeInBits: 2048) let privateKey = keyPair.privateKey let publicKey = keyPair.publicKey ```