Skip to content

Commit

Permalink
chore: updated source reference (#441)
Browse files Browse the repository at this point in the history
  • Loading branch information
SantiiRepair authored Oct 28, 2024
1 parent ad020cf commit 347f0ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/crypto.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func DES3Encrypt(key, iv, plaintext []byte) ([]byte, error) {
return dst, nil
}

// AESGCMDecrypt chromium > 80 https://source.chromium.org/chromium/chromium/src/+/master:components/os_crypt/os_crypt_win.cc
// AESGCMDecrypt chromium > 80 https://source.chromium.org/chromium/chromium/src/+/master:components/os_crypt/sync/os_crypt_win.cc
func AESGCMDecrypt(key, nounce, ciphertext []byte) ([]byte, error) {
block, err := aes.NewCipher(key)
if err != nil {
Expand Down

0 comments on commit 347f0ac

Please sign in to comment.