1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-13 17:22:27 +08:00

refactor: add error value return for GenerateRsaKey func

This commit is contained in:
dudaodong
2022-01-28 10:51:40 +08:00
parent 51bd974cc9
commit c40ac9bb9b
4 changed files with 12 additions and 7 deletions

View File

@@ -7,7 +7,10 @@ import (
)
func TestRsaEncrypt(t *testing.T) {
GenerateRsaKey(4096, "rsa_private.pem", "rsa_public.pem")
err := GenerateRsaKey(4096, "rsa_private.pem", "rsa_public.pem")
if err != nil {
t.FailNow()
}
data := []byte("hello world")
encrypted := RsaEncrypt(data, "rsa_public.pem")
decrypted := RsaDecrypt(encrypted, "rsa_private.pem")