diff options
| author | Mistivia <i@mistivia.com> | 2025-11-02 15:27:18 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-11-02 15:27:18 +0800 |
| commit | e9c24f4af7ed56760f6db7941827d09f6db9020b (patch) | |
| tree | 62128c43b883ce5e3148113350978755779bb5de /teleirc/matterbridge/vendor/go.mau.fi/whatsmeow/util/gcmutil | |
| parent | 58d5e7cfda4781d8a57ec52aefd02983835c301a (diff) | |
add matterbridge
Diffstat (limited to 'teleirc/matterbridge/vendor/go.mau.fi/whatsmeow/util/gcmutil')
| -rw-r--r-- | teleirc/matterbridge/vendor/go.mau.fi/whatsmeow/util/gcmutil/gcm.go | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/teleirc/matterbridge/vendor/go.mau.fi/whatsmeow/util/gcmutil/gcm.go b/teleirc/matterbridge/vendor/go.mau.fi/whatsmeow/util/gcmutil/gcm.go new file mode 100644 index 0000000..2451aea --- /dev/null +++ b/teleirc/matterbridge/vendor/go.mau.fi/whatsmeow/util/gcmutil/gcm.go @@ -0,0 +1,41 @@ +// Copyright (c) 2022 Tulir Asokan +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. + +package gcmutil + +import ( + "crypto/aes" + "crypto/cipher" + "fmt" +) + +func Prepare(secretKey []byte) (gcm cipher.AEAD, err error) { + var block cipher.Block + if block, err = aes.NewCipher(secretKey); err != nil { + err = fmt.Errorf("failed to initialize AES cipher: %w", err) + } else if gcm, err = cipher.NewGCM(block); err != nil { + err = fmt.Errorf("failed to initialize GCM: %w", err) + } + return +} + +func Decrypt(secretKey, iv, ciphertext, additionalData []byte) ([]byte, error) { + if gcm, err := Prepare(secretKey); err != nil { + return nil, err + } else if plaintext, decryptErr := gcm.Open(nil, iv, ciphertext, additionalData); decryptErr != nil { + return nil, decryptErr + } else { + return plaintext, nil + } +} + +func Encrypt(secretKey, iv, plaintext, additionalData []byte) ([]byte, error) { + if gcm, err := Prepare(secretKey); err != nil { + return nil, err + } else { + return gcm.Seal(nil, iv, plaintext, additionalData), nil + } +} |
