Versions in this module Expand all Collapse all v2 v2.0.0 Feb 28, 2024 Changes in this version + var ErrAESCBCDecrypt = errors.New("aes-cbc decrypt error") + var ErrAESGCMecrypt = errors.New("aes-gcm decrypt error") + type CBCInput struct + IV []byte + Key []byte + func (input *CBCInput) Decrypt(cipherText []byte) (decrypted []byte, err error) + type GCMInput struct + AAD []byte + IV []byte + Key []byte + Tag []byte + func (input *GCMInput) Decrypt(cipherText []byte) (decrypted []byte, err error) Other modules containing this package github.com/fmenezes/mongodb-atlas-cli