aboutsummaryrefslogtreecommitdiff
path: root/cc/mac/mac_parameters.h
diff options
context:
space:
mode:
authortholenst <tholenst@google.com>2022-07-21 01:18:54 -0700
committerCopybara-Service <copybara-worker@google.com>2022-07-21 01:20:05 -0700
commit1ffbaf3ee66bdc0f62e5982c08893137893e11f3 (patch)
treef08aa153b0464a9d36884a646391cda15f333350 /cc/mac/mac_parameters.h
parent1a6adf7f2330c17e5f3f3eaebf6c05aee9436da2 (diff)
downloadtink-1ffbaf3ee66bdc0f62e5982c08893137893e11f3.tar.gz
Rename KeyFormat in C++ to Parameters.
PiperOrigin-RevId: 462325353
Diffstat (limited to 'cc/mac/mac_parameters.h')
-rw-r--r--cc/mac/mac_parameters.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/cc/mac/mac_parameters.h b/cc/mac/mac_parameters.h
new file mode 100644
index 000000000..d21d315ba
--- /dev/null
+++ b/cc/mac/mac_parameters.h
@@ -0,0 +1,31 @@
+// Copyright 2022 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.
+//
+////////////////////////////////////////////////////////////////////////////////
+
+#ifndef TINK_MAC_MAC_PARAMETERS_H_
+#define TINK_MAC_MAC_PARAMETERS_H_
+
+#include "tink/parameters.h"
+
+namespace crypto {
+namespace tink {
+
+// `MacKey` description without the randomly chosen key material.
+class MacParameters : public Parameters {};
+
+} // namespace tink
+} // namespace crypto
+
+#endif // TINK_MAC_MAC_PARAMETERS_H_