This commit is contained in:
Looly 2022-09-07 16:23:58 +08:00
parent 58d1a9a92b
commit cd26eb3bb6

View File

@ -31,6 +31,8 @@ public class SM2Test {
final KeyPair pair = KeyUtil.generateKeyPair("SM2");
Assert.assertNotNull(pair.getPrivate());
Assert.assertNotNull(pair.getPublic());
new SM2(pair.getPrivate(), pair.getPublic());
}
@Test
@ -319,4 +321,9 @@ public class SM2Test {
// 04占位一个字节
Assert.assertEquals(65, sm2.getQ(false).length);
}
@Test
public void issuesI5PWQ4Test(){
}
}