Skip to content

Commit 1d905cb

Browse files
authored
Update README.md
1 parent aeffeb7 commit 1d905cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Install-Package NETCore.Encrypt -Version 2.0.5
115115

116116
var encrypted = EncryptProvider.RSAEncrypt(publicKey, srcString);
117117

118-
// On mac/linux with openssl at version 2.0.5
118+
// On mac/linux at version 2.0.5
119119
var encrypted = EncryptProvider.RSAEncrypt(publicKey, srcString, RSAEncryptionPadding.Pkcs1);
120120
```
121121

@@ -127,7 +127,7 @@ Install-Package NETCore.Encrypt -Version 2.0.5
127127

128128
var decrypted = EncryptProvider.RSADecrypt(privateKey, encryptedStr);
129129

130-
// On mac/linux with openssl at version 2.0.5
130+
// On mac/linux at version 2.0.5
131131
var encrypted = EncryptProvider.RSADecrypt(privateKey, encryptedStr, RSAEncryptionPadding.Pkcs1);
132132
```
133133

0 commit comments

Comments
 (0)