aboutsummaryrefslogtreecommitdiff
path: root/cc/BUILD.bazel
diff options
context:
space:
mode:
authorwconner <wconner@google.com>2023-07-24 09:23:47 -0700
committerCopybara-Service <copybara-worker@google.com>2023-07-24 09:24:48 -0700
commitd32fe54f31ef1db992a3ac79e7f444857d73f4ba (patch)
treee5e7a625d96c24ff365bb5075acaa77d4288ce85 /cc/BUILD.bazel
parentfce7687f8be99e232da0a2e0ef392bbba8953635 (diff)
downloadtink-d32fe54f31ef1db992a3ac79e7f444857d73f4ba.tar.gz
Add interfaces for signature parameters and key types.
PiperOrigin-RevId: 550583804
Diffstat (limited to 'cc/BUILD.bazel')
-rw-r--r--cc/BUILD.bazel45
1 files changed, 26 insertions, 19 deletions
diff --git a/cc/BUILD.bazel b/cc/BUILD.bazel
index b5a192f86..f7456ede9 100644
--- a/cc/BUILD.bazel
+++ b/cc/BUILD.bazel
@@ -702,6 +702,13 @@ cc_library(
)
cc_library(
+ name = "private_key",
+ hdrs = ["private_key.h"],
+ include_prefix = "tink",
+ deps = [":key"],
+)
+
+cc_library(
name = "partial_key_access_token",
hdrs = ["partial_key_access_token.h"],
include_prefix = "tink",
@@ -749,6 +756,25 @@ cc_library(
visibility = ["//visibility:public"],
)
+cc_library(
+ name = "configuration",
+ hdrs = ["configuration.h"],
+ include_prefix = "tink",
+ visibility = ["//visibility:public"],
+ deps = [
+ "//internal:key_type_info_store",
+ "//internal:keyset_wrapper_store",
+ ],
+)
+
+cc_library(
+ name = "key_gen_configuration",
+ hdrs = ["key_gen_configuration.h"],
+ include_prefix = "tink",
+ visibility = ["//visibility:public"],
+ deps = ["//internal:key_type_info_store"],
+)
+
# tests
cc_test(
@@ -1118,22 +1144,3 @@ cc_test(
"@com_google_googletest//:gtest_main",
],
)
-
-cc_library(
- name = "configuration",
- hdrs = ["configuration.h"],
- include_prefix = "tink",
- visibility = ["//visibility:public"],
- deps = [
- "//internal:key_type_info_store",
- "//internal:keyset_wrapper_store",
- ],
-)
-
-cc_library(
- name = "key_gen_configuration",
- hdrs = ["key_gen_configuration.h"],
- include_prefix = "tink",
- visibility = ["//visibility:public"],
- deps = ["//internal:key_type_info_store"],
-)