Skip to content

Commit 534afa3

Browse files
committed
update sign and verify test
1 parent ae4de01 commit 534afa3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/NETCore.Encrypt.Tests/RSA_Tests.cs

+3
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,7 @@ public void Rsa_SignAndVerify_Test()
241241
{
242242
//Act
243243
var rawStr = "123456";
244+
var rawStr1 = "123457";
244245

245246
var rsaKey = EncryptProvider.CreateRsaKey();
246247
var privateKey = rsaKey.PrivateKey;
@@ -249,10 +250,12 @@ public void Rsa_SignAndVerify_Test()
249250
var signStr = EncryptProvider.RSASign(rawStr, privateKey);
250251

251252
var result = EncryptProvider.RSAVerify(rawStr, signStr, publicKey);
253+
var errorResult = EncryptProvider.RSAVerify(rawStr1, signStr, publicKey);
252254

253255
//Assert
254256
Assert.NotEmpty(signStr);
255257
Assert.True(result);
258+
Assert.False(errorResult);
256259
}
257260

258261
[Theory(DisplayName = "Rsa to pem test")]

0 commit comments

Comments
 (0)