blob: b0583cc6cebecec10cf3d57ddd9ef4e5cbb74173 [file] [log] [blame]
tholenst3f932362021-04-12 00:26:02 -07001// Copyright 2018 Google LLC
2//
Thanh Bui483c01d2017-07-24 11:04:36 -07003// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
15////////////////////////////////////////////////////////////////////////////////
Thai Duongd4cf7852018-01-07 22:21:55 -080016
Thanh Bui483c01d2017-07-24 11:04:36 -070017package aead_test
18
juerg65e75722023-03-06 01:00:27 -080019// [START aead-example]
20
Thanh Bui483c01d2017-07-24 11:04:36 -070021import (
juerg65e75722023-03-06 01:00:27 -080022 "bytes"
thaidn94a66dc2020-10-14 15:31:57 -070023 "fmt"
Tink Teamceb88ac2020-06-29 13:49:50 -070024 "log"
Tink Team528d8eb2018-03-05 15:11:20 -080025
Tink Teamceb88ac2020-06-29 13:49:50 -070026 "github.com/google/tink/go/aead"
juerg65e75722023-03-06 01:00:27 -080027 "github.com/google/tink/go/insecurecleartextkeyset"
Tink Teamceb88ac2020-06-29 13:49:50 -070028 "github.com/google/tink/go/keyset"
Thanh Bui483c01d2017-07-24 11:04:36 -070029)
30
Tink Teamceb88ac2020-06-29 13:49:50 -070031func Example() {
juerg65e75722023-03-06 01:00:27 -080032 // A keyset created with "tinkey create-keyset --key-template=AES256_GCM". Note
33 // that this keyset has the secret key information in cleartext.
34 jsonKeyset := `{
35 "key": [{
36 "keyData": {
37 "keyMaterialType":
38 "SYMMETRIC",
39 "typeUrl":
40 "type.googleapis.com/google.crypto.tink.AesGcmKey",
41 "value":
42 "GiBWyUfGgYk3RTRhj/LIUzSudIWlyjCftCOypTr0jCNSLg=="
43 },
44 "keyId": 294406504,
45 "outputPrefixType": "TINK",
46 "status": "ENABLED"
47 }],
48 "primaryKeyId": 294406504
49 }`
Tink Teamceb88ac2020-06-29 13:49:50 -070050
juerg65e75722023-03-06 01:00:27 -080051 // Create a keyset handle from the cleartext keyset in the previous
52 // step. The keyset handle provides abstract access to the underlying keyset to
53 // limit the exposure of accessing the raw key material. WARNING: In practice,
54 // it is unlikely you will want to use a insecurecleartextkeyset, as it implies
55 // that your key material is passed in cleartext, which is a security risk.
thaidn94a66dc2020-10-14 15:31:57 -070056 // Consider encrypting it with a remote key in Cloud KMS, AWS KMS or HashiCorp Vault.
57 // See https://github.com/google/tink/blob/master/docs/GOLANG-HOWTO.md#storing-and-loading-existing-keysets.
juerg65e75722023-03-06 01:00:27 -080058 keysetHandle, err := insecurecleartextkeyset.Read(
59 keyset.NewJSONReader(bytes.NewBufferString(jsonKeyset)))
Tink Teamceb88ac2020-06-29 13:49:50 -070060 if err != nil {
61 log.Fatal(err)
62 }
63
juerg65e75722023-03-06 01:00:27 -080064 // Retrieve the AEAD primitive we want to use from the keyset handle.
65 primitive, err := aead.New(keysetHandle)
Tink Teamceb88ac2020-06-29 13:49:50 -070066 if err != nil {
67 log.Fatal(err)
68 }
69
juerg65e75722023-03-06 01:00:27 -080070 // Use the primitive to encrypt a message. In this case the primary key of the
71 // keyset will be used (which is also the only key in this example).
72 plaintext := []byte("message")
73 associatedData := []byte("associated data")
74 ciphertext, err := primitive.Encrypt(plaintext, associatedData)
Tink Teamceb88ac2020-06-29 13:49:50 -070075 if err != nil {
76 log.Fatal(err)
77 }
78
juerg65e75722023-03-06 01:00:27 -080079 // Use the primitive to decrypt the message. Decrypt finds the correct key in
80 // the keyset and decrypts the ciphertext. If no key is found or decryption
81 // fails, it returns an error.
82 decrypted, err := primitive.Decrypt(ciphertext, associatedData)
83 if err != nil {
84 log.Fatal(err)
85 }
86
87 fmt.Println(string(decrypted))
88 // Output: message
Tink Teamceb88ac2020-06-29 13:49:50 -070089}
90
juerg65e75722023-03-06 01:00:27 -080091// [END aead-example]