adding GenerateRSAKeyWithExponent

This commit is contained in:
Colin Misare
2016-06-16 19:32:44 -06:00
committed by JT Olds
parent 2ffbf8f57a
commit a0b9b65330
2 changed files with 9 additions and 1 deletions

View File

@@ -152,6 +152,10 @@ func TestGenerate(t *testing.T) {
if err != nil {
t.Fatal(err)
}
_, err = GenerateRSAKeyWithExponent(1024, 65537)
if err != nil {
t.Fatal(err)
}
}
func TestSign(t *testing.T) {