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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package subtle
import (
"errors"
"fmt"
"golang.org/x/crypto/chacha20poly1305"
"github.com/tink-crypto/tink-go/v2/subtle/random"
"github.com/tink-crypto/tink-go/v2/tink"
)
// XChaCha20Poly1305 is an implementation of AEAD interface.
type XChaCha20Poly1305 struct {
key []byte
}
// Assert that XChaCha20Poly1305 implements the AEAD interface.
var _ tink.AEAD = (*XChaCha20Poly1305)(nil)
// NewXChaCha20Poly1305 returns an XChaCha20Poly1305 instance.
// The key argument should be a 32-bytes key.
func NewXChaCha20Poly1305(key []byte) (*XChaCha20Poly1305, error) {
if len(key) != chacha20poly1305.KeySize {
return nil, errors.New("xchacha20poly1305: bad key length")
}
return &XChaCha20Poly1305{key: key}, nil
}
// Encrypt encrypts plaintext with associatedData.
//
// The resulting ciphertext consists of two parts:
// 1. the nonce used for encryption
// 2. the actual ciphertext
func (x *XChaCha20Poly1305) Encrypt(plaintext []byte, associatedData []byte) ([]byte, error) {
if len(plaintext) > maxInt-chacha20poly1305.NonceSizeX-chacha20poly1305.Overhead {
return nil, fmt.Errorf("xchacha20poly1305: plaintext too long")
}
c, err := chacha20poly1305.NewX(x.key)
if err != nil {
return nil, err
}
nounce := random.GetRandomBytes(chacha20poly1305.NonceSizeX)
// Make the capacity of dst large enough so that both the nounce and the ciphertext fit inside.
dst := make([]byte, 0, chacha20poly1305.NonceSizeX+len(plaintext)+c.Overhead())
dst = append(dst, nounce...)
// Seal appends the ciphertext to dst. So the final output is: nounce || ciphertext.
return c.Seal(dst, nounce, plaintext, associatedData), nil
}
// Decrypt decrypts ciphertext with associatedData.
//
// ciphertext consists of two parts:
// 1. the nonce used for encryption
// 2. the actual ciphertext
func (x *XChaCha20Poly1305) Decrypt(ciphertext []byte, associatedData []byte) ([]byte, error) {
if len(ciphertext) < chacha20poly1305.NonceSizeX+chacha20poly1305.Overhead {
return nil, fmt.Errorf("xchacha20poly1305: ciphertext too short")
}
c, err := chacha20poly1305.NewX(x.key)
if err != nil {
return nil, err
}
n := ciphertext[:chacha20poly1305.NonceSizeX]
pt, err := c.Open(nil, n, ciphertext[chacha20poly1305.NonceSizeX:], associatedData)
if err != nil {
return nil, fmt.Errorf("XChaCha20Poly1305.Decrypt: %s", err)
}
return pt, nil
}
|