chore: updated source reference (#441)

This commit is contained in:
Santiago Ramirez 2024-10-28 06:24:25 -04:00 committed by ᴍᴏᴏɴD4ʀᴋ
parent ad020cf135
commit d0967a362e
1 changed files with 1 additions and 1 deletions

View File

@ -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 {