| // Copyright 2019 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_test |
| |
| // [START kms-envelope-aead-example] |
| |
| import ( |
| "fmt" |
| "log" |
| |
| "github.com/google/tink/go/aead" |
| "github.com/google/tink/go/testing/fakekms" |
| ) |
| |
| // The fake KMS should only be used in tests. It is not secure. |
| const keyURI = "fake-kms://CM2b3_MDElQKSAowdHlwZS5nb29nbGVhcGlzLmNvbS9nb29nbGUuY3J5cHRvLnRpbmsuQWVzR2NtS2V5EhIaEIK75t5L-adlUwVhWvRuWUwYARABGM2b3_MDIAE" |
| |
| func Example_kmsEnvelopeAEAD() { |
| // Get a KEK (key encryption key) AEAD. This is usually a remote AEAD to a KMS. In this example, |
| // we use a fake KMS to avoid making RPCs. |
| client, err := fakekms.NewClient(keyURI) |
| if err != nil { |
| log.Fatal(err) |
| } |
| kekAEAD, err := client.GetAEAD(keyURI) |
| if err != nil { |
| log.Fatal(err) |
| } |
| |
| // Get the KMS envelope AEAD primitive. |
| primitive := aead.NewKMSEnvelopeAEAD2(aead.AES256GCMKeyTemplate(), kekAEAD) |
| |
| // Use the primitive. |
| plaintext := []byte("message") |
| associatedData := []byte("example KMS envelope AEAD encryption") |
| |
| ciphertext, err := primitive.Encrypt(plaintext, associatedData) |
| if err != nil { |
| log.Fatal(err) |
| } |
| |
| decrypted, err := primitive.Decrypt(ciphertext, associatedData) |
| if err != nil { |
| log.Fatal(err) |
| } |
| fmt.Println(string(decrypted)) |
| // Output: message |
| } |
| |
| // [END kms-envelope-aead-example] |
| |