blob: fc0e534414f9b5c96ec4d79290b6584184dae4cd [file] [log] [blame]
// 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 aead
import (
"errors"
"fmt"
"golang.org/x/crypto/chacha20poly1305"
"github.com/google/tink/go/subtle/random"
"github.com/google/tink/go/tink"
)
// ChaCha20Poly1305 is an implementation of AEAD interface.
type ChaCha20Poly1305 struct {
Key []byte
}
// Assert that ChaCha20Poly1305 implements the AEAD interface.
var _ tink.AEAD = (*ChaCha20Poly1305)(nil)
// NewChaCha20Poly1305 returns an ChaCha20Poly1305 instance.
// The key argument should be a 32-bytes key.
func NewChaCha20Poly1305(key []byte) (*ChaCha20Poly1305, error) {
if len(key) != chacha20poly1305.KeySize {
return nil, errors.New("chacha20poly1305: bad key length")
}
return &ChaCha20Poly1305{Key: key}, nil
}
// Encrypt encrypts {@code pt} with {@code aad} as additional
// authenticated data. The resulting ciphertext consists of two parts:
// (1) the nonce used for encryption and (2) the actual ciphertext.
func (ca *ChaCha20Poly1305) Encrypt(pt []byte, aad []byte) ([]byte, error) {
c, err := chacha20poly1305.New(ca.Key)
if err != nil {
return nil, err
}
n := ca.newNonce()
ct := c.Seal(nil, n, pt, aad)
ret := make([]byte, 0, len(n) + len(ct))
ret = append(ret, n...)
ret = append(ret, ct...)
return ret, nil
}
// Decrypt decrypts {@code ct} with {@code aad} as the additionalauthenticated data.
func (ca *ChaCha20Poly1305) Decrypt(ct []byte, aad []byte) ([]byte, error) {
c, err := chacha20poly1305.New(ca.Key)
if err != nil {
return nil, err
}
n := ct[:chacha20poly1305.NonceSize]
pt, err := c.Open(nil, n, ct[chacha20poly1305.NonceSize:], aad)
if err != nil {
return nil, fmt.Errorf("ChaCha20Poly1305.Decrypt: %s", err)
}
return pt, nil
}
// newNonce creates a new nonce for encryption.
func (ca *ChaCha20Poly1305) newNonce() []byte {
return random.GetRandomBytes(chacha20poly1305.NonceSize)
}