aboutsummaryrefslogtreecommitdiff
path: root/cc/mac/hmac_key_manager.h
diff options
context:
space:
mode:
authorkste <kste@google.com>2021-04-16 07:33:15 -0700
committerCopybara-Service <copybara-worker@google.com>2021-04-16 07:33:51 -0700
commit47b6e1783c8dc1eaed150632efd2ceb50f3f867c (patch)
treee62a25949509a252b05e42065289b9e3efaeea0a /cc/mac/hmac_key_manager.h
parent564daf0fd1e6a27ef469fdb0b85ffb60e3a0375e (diff)
downloadtink-47b6e1783c8dc1eaed150632efd2ceb50f3f867c.tar.gz
Refactor tink fips into an internal and public part.
Create a new fips_util target which captures all internal functions used for implementing the FIPS checks and puts it in the internal namespace. The tink_fips.h now only provides functions which are part of the public API. PiperOrigin-RevId: 368843791
Diffstat (limited to 'cc/mac/hmac_key_manager.h')
-rw-r--r--cc/mac/hmac_key_manager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cc/mac/hmac_key_manager.h b/cc/mac/hmac_key_manager.h
index 8fc5f2934..7f63890b9 100644
--- a/cc/mac/hmac_key_manager.h
+++ b/cc/mac/hmac_key_manager.h
@@ -74,8 +74,8 @@ class HmacKeyManager
const google::crypto::tink::HmacKeyFormat& key_format,
InputStream* input_stream) const override;
- FipsCompatibility FipsStatus() const override {
- return FipsCompatibility::kRequiresBoringCrypto;
+ internal::FipsCompatibility FipsStatus() const override {
+ return internal::FipsCompatibility::kRequiresBoringCrypto;
}
private: