1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
package security
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"encoding/base64"
"errors"
"fmt"
"io"
)
type CredentialCipher struct {
aead cipher.AEAD
}
func NewCredentialCipher(encodedKey string) (*CredentialCipher, error) {
key, err := base64.StdEncoding.DecodeString(encodedKey)
if err != nil {
return nil, fmt.Errorf("decode credential key: %w", err)
}
if len(key) != 32 {
return nil, errors.New("credential key must be a base64-encoded 32-byte key")
}
block, err := aes.NewCipher(key)
if err != nil {
return nil, fmt.Errorf("create credential cipher: %w", err)
}
aead, err := cipher.NewGCM(block)
if err != nil {
return nil, fmt.Errorf("create credential AEAD: %w", err)
}
return &CredentialCipher{aead: aead}, nil
}
func (c *CredentialCipher) Encrypt(plaintext string) ([]byte, error) {
if plaintext == "" {
return nil, errors.New("credential cannot be empty")
}
nonce := make([]byte, c.aead.NonceSize())
if _, err := io.ReadFull(rand.Reader, nonce); err != nil {
return nil, fmt.Errorf("generate credential nonce: %w", err)
}
return c.aead.Seal(nonce, nonce, []byte(plaintext), nil), nil
}
func (c *CredentialCipher) Decrypt(ciphertext []byte) (string, error) {
if len(ciphertext) < c.aead.NonceSize() {
return "", errors.New("credential ciphertext is truncated")
}
nonce := ciphertext[:c.aead.NonceSize()]
plaintext, err := c.aead.Open(nil, nonce, ciphertext[c.aead.NonceSize():], nil)
if err != nil {
return "", errors.New("decrypt credential: authentication failed")
}
return string(plaintext), nil
}
|