mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
92053b85b0
* chore: update golangci-lint config and fix lint issues
74 lines
2.1 KiB
Go
74 lines
2.1 KiB
Go
package crypto
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/sha1"
|
|
"encoding/hex"
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
const baseKey = "moond4rk"
|
|
|
|
var (
|
|
aesKey = bytes.Repeat([]byte(baseKey), 2) // 16 bytes
|
|
aesIV = []byte("01234567abcdef01") // 16 bytes
|
|
plainText = []byte("Hello, World!")
|
|
aes128Ciphertext = "19381468ecf824c0bfc7a89eed9777d2"
|
|
|
|
des3Key = sha1.New().Sum(aesKey)[:24]
|
|
des3IV = aesIV[:8]
|
|
des3Ciphertext = "a4492f31bc404fae18d53a46ca79282e"
|
|
|
|
aesGCMNonce = aesKey[:12]
|
|
aesGCMCiphertext = "6c49dac89992639713edab3a114c450968a08b53556872cea3919e2e9a"
|
|
)
|
|
|
|
func TestAES128CBCEncrypt(t *testing.T) {
|
|
encrypted, err := AES128CBCEncrypt(aesKey, aesIV, plainText)
|
|
require.NoError(t, err)
|
|
assert.NotEmpty(t, encrypted)
|
|
assert.Equal(t, aes128Ciphertext, fmt.Sprintf("%x", encrypted))
|
|
}
|
|
|
|
func TestAES128CBCDecrypt(t *testing.T) {
|
|
ciphertext, _ := hex.DecodeString(aes128Ciphertext)
|
|
decrypted, err := AES128CBCDecrypt(aesKey, aesIV, ciphertext)
|
|
require.NoError(t, err)
|
|
assert.NotEmpty(t, decrypted)
|
|
assert.Equal(t, plainText, decrypted)
|
|
}
|
|
|
|
func TestDES3Encrypt(t *testing.T) {
|
|
encrypted, err := DES3Encrypt(des3Key, des3IV, plainText)
|
|
require.NoError(t, err)
|
|
assert.NotEmpty(t, encrypted)
|
|
assert.Equal(t, des3Ciphertext, fmt.Sprintf("%x", encrypted))
|
|
}
|
|
|
|
func TestDES3Decrypt(t *testing.T) {
|
|
ciphertext, _ := hex.DecodeString(des3Ciphertext)
|
|
decrypted, err := DES3Decrypt(des3Key, des3IV, ciphertext)
|
|
require.NoError(t, err)
|
|
assert.NotEmpty(t, decrypted)
|
|
assert.Equal(t, plainText, decrypted)
|
|
}
|
|
|
|
func TestAESGCMEncrypt(t *testing.T) {
|
|
encrypted, err := AESGCMEncrypt(aesKey, aesGCMNonce, plainText)
|
|
require.NoError(t, err)
|
|
assert.NotEmpty(t, encrypted)
|
|
assert.Equal(t, aesGCMCiphertext, fmt.Sprintf("%x", encrypted))
|
|
}
|
|
|
|
func TestAESGCMDecrypt(t *testing.T) {
|
|
ciphertext, _ := hex.DecodeString(aesGCMCiphertext)
|
|
decrypted, err := AESGCMDecrypt(aesKey, aesGCMNonce, ciphertext)
|
|
require.NoError(t, err)
|
|
assert.NotEmpty(t, decrypted)
|
|
assert.Equal(t, plainText, decrypted)
|
|
}
|