| // Copyright 2018 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 aead |
| |
| import ( |
| "fmt" |
| |
| "github.com/google/tink/go/core/cryptofmt" |
| "github.com/google/tink/go/core/primitiveset" |
| "github.com/google/tink/go/core/registry" |
| "github.com/google/tink/go/keyset" |
| "github.com/google/tink/go/tink" |
| ) |
| |
| // New returns an AEAD primitive from the given keyset handle. |
| func New(h *keyset.Handle) (tink.AEAD, error) { |
| return NewWithKeyManager(h, nil /*keyManager*/) |
| } |
| |
| // NewWithKeyManager returns an AEAD primitive from the given keyset handle and custom key manager. |
| // Deprecated: register the KeyManager and use New above. |
| func NewWithKeyManager(h *keyset.Handle, km registry.KeyManager) (tink.AEAD, error) { |
| ps, err := h.PrimitivesWithKeyManager(km) |
| if err != nil { |
| return nil, fmt.Errorf("aead_factory: cannot obtain primitive set: %s", err) |
| } |
| |
| return newWrappedAead(ps) |
| } |
| |
| // wrappedAead is an AEAD implementation that uses the underlying primitive set for encryption |
| // and decryption. |
| type wrappedAead struct { |
| ps *primitiveset.PrimitiveSet |
| } |
| |
| func newWrappedAead(ps *primitiveset.PrimitiveSet) (*wrappedAead, error) { |
| if _, ok := (ps.Primary.Primitive).(tink.AEAD); !ok { |
| return nil, fmt.Errorf("aead_factory: not an AEAD primitive") |
| } |
| |
| for _, primitives := range ps.Entries { |
| for _, p := range primitives { |
| if _, ok := (p.Primitive).(tink.AEAD); !ok { |
| return nil, fmt.Errorf("aead_factory: not an AEAD primitive") |
| } |
| } |
| } |
| |
| ret := new(wrappedAead) |
| ret.ps = ps |
| |
| return ret, nil |
| } |
| |
| // Encrypt encrypts the given plaintext with the given additional authenticated data. |
| // It returns the concatenation of the primary's identifier and the ciphertext. |
| func (a *wrappedAead) Encrypt(pt, ad []byte) ([]byte, error) { |
| primary := a.ps.Primary |
| p, ok := (primary.Primitive).(tink.AEAD) |
| if !ok { |
| return nil, fmt.Errorf("aead_factory: not an AEAD primitive") |
| } |
| |
| ct, err := p.Encrypt(pt, ad) |
| if err != nil { |
| return nil, err |
| } |
| return append([]byte(primary.Prefix), ct...), nil |
| } |
| |
| // Decrypt decrypts the given ciphertext and authenticates it with the given |
| // additional authenticated data. It returns the corresponding plaintext if the |
| // ciphertext is authenticated. |
| func (a *wrappedAead) Decrypt(ct, ad []byte) ([]byte, error) { |
| // try non-raw keys |
| prefixSize := cryptofmt.NonRawPrefixSize |
| if len(ct) > prefixSize { |
| prefix := ct[:prefixSize] |
| ctNoPrefix := ct[prefixSize:] |
| entries, err := a.ps.EntriesForPrefix(string(prefix)) |
| if err == nil { |
| for i := 0; i < len(entries); i++ { |
| p, ok := (entries[i].Primitive).(tink.AEAD) |
| if !ok { |
| return nil, fmt.Errorf("aead_factory: not an AEAD primitive") |
| } |
| |
| pt, err := p.Decrypt(ctNoPrefix, ad) |
| if err == nil { |
| return pt, nil |
| } |
| } |
| } |
| } |
| // try raw keys |
| entries, err := a.ps.RawEntries() |
| if err == nil { |
| for i := 0; i < len(entries); i++ { |
| p, ok := (entries[i].Primitive).(tink.AEAD) |
| if !ok { |
| return nil, fmt.Errorf("aead_factory: not an AEAD primitive") |
| } |
| |
| pt, err := p.Decrypt(ct, ad) |
| if err == nil { |
| return pt, nil |
| } |
| } |
| } |
| // nothing worked |
| return nil, fmt.Errorf("aead_factory: decryption failed") |
| } |