tholenst | 3f93236 | 2021-04-12 00:26:02 -0700 | [diff] [blame] | 1 | // Copyright 2018 Google LLC |
| 2 | // |
Thanh Bui | 483c01d | 2017-07-24 11:04:36 -0700 | [diff] [blame] | 3 | // 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 Duong | d4cf785 | 2018-01-07 22:21:55 -0800 | [diff] [blame] | 16 | |
Thanh Bui | 483c01d | 2017-07-24 11:04:36 -0700 | [diff] [blame] | 17 | package aead_test |
| 18 | |
juerg | 65e7572 | 2023-03-06 01:00:27 -0800 | [diff] [blame] | 19 | // [START aead-example] |
| 20 | |
Thanh Bui | 483c01d | 2017-07-24 11:04:36 -0700 | [diff] [blame] | 21 | import ( |
juerg | 65e7572 | 2023-03-06 01:00:27 -0800 | [diff] [blame] | 22 | "bytes" |
thaidn | 94a66dc | 2020-10-14 15:31:57 -0700 | [diff] [blame] | 23 | "fmt" |
Tink Team | ceb88ac | 2020-06-29 13:49:50 -0700 | [diff] [blame] | 24 | "log" |
Tink Team | 528d8eb | 2018-03-05 15:11:20 -0800 | [diff] [blame] | 25 | |
Tink Team | ceb88ac | 2020-06-29 13:49:50 -0700 | [diff] [blame] | 26 | "github.com/google/tink/go/aead" |
juerg | 65e7572 | 2023-03-06 01:00:27 -0800 | [diff] [blame] | 27 | "github.com/google/tink/go/insecurecleartextkeyset" |
Tink Team | ceb88ac | 2020-06-29 13:49:50 -0700 | [diff] [blame] | 28 | "github.com/google/tink/go/keyset" |
Thanh Bui | 483c01d | 2017-07-24 11:04:36 -0700 | [diff] [blame] | 29 | ) |
| 30 | |
Tink Team | ceb88ac | 2020-06-29 13:49:50 -0700 | [diff] [blame] | 31 | func Example() { |
juerg | 65e7572 | 2023-03-06 01:00:27 -0800 | [diff] [blame] | 32 | // 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 Team | ceb88ac | 2020-06-29 13:49:50 -0700 | [diff] [blame] | 50 | |
juerg | 65e7572 | 2023-03-06 01:00:27 -0800 | [diff] [blame] | 51 | // 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. |
thaidn | 94a66dc | 2020-10-14 15:31:57 -0700 | [diff] [blame] | 56 | // 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. |
juerg | 65e7572 | 2023-03-06 01:00:27 -0800 | [diff] [blame] | 58 | keysetHandle, err := insecurecleartextkeyset.Read( |
| 59 | keyset.NewJSONReader(bytes.NewBufferString(jsonKeyset))) |
Tink Team | ceb88ac | 2020-06-29 13:49:50 -0700 | [diff] [blame] | 60 | if err != nil { |
| 61 | log.Fatal(err) |
| 62 | } |
| 63 | |
juerg | 65e7572 | 2023-03-06 01:00:27 -0800 | [diff] [blame] | 64 | // Retrieve the AEAD primitive we want to use from the keyset handle. |
| 65 | primitive, err := aead.New(keysetHandle) |
Tink Team | ceb88ac | 2020-06-29 13:49:50 -0700 | [diff] [blame] | 66 | if err != nil { |
| 67 | log.Fatal(err) |
| 68 | } |
| 69 | |
juerg | 65e7572 | 2023-03-06 01:00:27 -0800 | [diff] [blame] | 70 | // 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 Team | ceb88ac | 2020-06-29 13:49:50 -0700 | [diff] [blame] | 75 | if err != nil { |
| 76 | log.Fatal(err) |
| 77 | } |
| 78 | |
juerg | 65e7572 | 2023-03-06 01:00:27 -0800 | [diff] [blame] | 79 | // 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 Team | ceb88ac | 2020-06-29 13:49:50 -0700 | [diff] [blame] | 89 | } |
| 90 | |
juerg | 65e7572 | 2023-03-06 01:00:27 -0800 | [diff] [blame] | 91 | // [END aead-example] |