1package(default_visibility = ["//visibility:public"]) 2 3licenses(["notice"]) 4 5filegroup( 6 name = "ecies", 7 testonly = 1, 8 srcs = [ 9 # Generated with 10 # tinkey create \ 11 # --key-template ECIES_P256_HKDF_HMAC_SHA256_AES128_CTR_HMAC_SHA256 \ 12 # --out testdata/keysets/ecies_private_keyset2.bin \ 13 # --out-format BINARY 14 "ecies_private_keyset.bin", 15 16 # Generated with 17 # tinkey create \ 18 # --key-template ECIES_P256_HKDF_HMAC_SHA256_AES128_GCM \ 19 # --out testdata/keysets/ecies_private_keyset2.bin \ 20 # --out-format BINARY 21 "ecies_private_keyset2.bin", 22 23 # tinkey create-public-keyset \ 24 # --in testdata/keysets/ecies_private_keyset.bin \ 25 # --in-form BINARY \ 26 # --out testdata/keysets/ecies_public_keyset.bin \ 27 # --out-form BINARY 28 "ecies_public_keyset.bin", 29 "ecies_public_keyset2.bin", 30 ], 31) 32