Compare commits

..

No commits in common. "5cf96d8ab31882fa4e753fe63e8a0d31af434847" and "991e82cfda2bd8aca6186ea3b18586daa781c23f" have entirely different histories.

2 changed files with 4 additions and 26 deletions

View File

@ -35,11 +35,10 @@ func domainList(c *gin.Context) {
log.Fatal(err)
}
encryptData := encryptResult(string(data), token)
c.JSON(200, gin.H{
"code": 200,
"msg": "success",
"data": encryptData,
"msg": "Success",
"data": encryptResult(string(data), token),
})
}
@ -79,24 +78,12 @@ func getCert(c *gin.Context) {
}
key := string(keyContent)
certInfoFilePath := path.Join(dir, CertInfoFileName)
certInfoContent, err := os.ReadFile(certInfoFilePath)
if err != nil {
c.JSON(200, gin.H{
"code": 500,
"msg": "Failed to read cert info file.",
})
return
}
certInfo := string(certInfoContent)
c.JSON(200, gin.H{
"code": 200,
"msg": "Success",
"data": gin.H{
"crt": encryptResult(crt, token),
"key": encryptResult(key, token),
"info": encryptResult(certInfo, token),
"crt": encryptResult(crt, token),
"key": encryptResult(key, token),
},
})
}

View File

@ -61,12 +61,3 @@ func TestRSA(t *testing.T) {
fmt.Println(string(decryptd))
}
func TestAES(t *testing.T) {
content := "123456"
encryptd := crypto.EncryptAES([]byte("12345678901234561234567890123456"), []byte(content))
fmt.Println(base64.StdEncoding.EncodeToString(encryptd))
plain := crypto.DecryptAES([]byte("12345678901234561234567890123456"), encryptd)
fmt.Println(string(plain))
}