kste | 47b6e17 | 2021-04-16 07:33:15 -0700 | [diff] [blame] | 1 | // Copyright 2021 Google LLC |
| 2 | // |
| 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 | /////////////////////////////////////////////////////////////////////////////// |
| 16 | #include "tink/internal/fips_utils.h" |
| 17 | |
| 18 | #include "gmock/gmock.h" |
| 19 | #include "gtest/gtest.h" |
lizatretyakova | 456657f | 2021-11-01 05:48:32 -0700 | [diff] [blame] | 20 | #include "absl/status/status.h" |
kste | 47b6e17 | 2021-04-16 07:33:15 -0700 | [diff] [blame] | 21 | #include "openssl/crypto.h" |
| 22 | #include "tink/util/status.h" |
| 23 | #include "tink/util/test_matchers.h" |
| 24 | |
| 25 | namespace crypto { |
| 26 | namespace tink { |
ambrosin | 113db29 | 2023-04-20 06:13:22 -0700 | [diff] [blame] | 27 | namespace internal { |
kste | 47b6e17 | 2021-04-16 07:33:15 -0700 | [diff] [blame] | 28 | namespace { |
| 29 | |
| 30 | using ::crypto::tink::test::IsOk; |
| 31 | using ::crypto::tink::test::StatusIs; |
| 32 | |
| 33 | class FipsIncompatible { |
| 34 | public: |
ambrosin | 113db29 | 2023-04-20 06:13:22 -0700 | [diff] [blame] | 35 | static constexpr FipsCompatibility kFipsStatus = FipsCompatibility::kNotFips; |
kste | 47b6e17 | 2021-04-16 07:33:15 -0700 | [diff] [blame] | 36 | }; |
| 37 | |
| 38 | class FipsCompatibleWithBoringCrypto { |
| 39 | public: |
ambrosin | 113db29 | 2023-04-20 06:13:22 -0700 | [diff] [blame] | 40 | static constexpr FipsCompatibility kFipsStatus = |
| 41 | FipsCompatibility::kRequiresBoringCrypto; |
kste | 47b6e17 | 2021-04-16 07:33:15 -0700 | [diff] [blame] | 42 | }; |
| 43 | |
| 44 | TEST(FipsUtilsTest, CompatibilityInNonFipsMode) { |
ambrosin | 113db29 | 2023-04-20 06:13:22 -0700 | [diff] [blame] | 45 | if (kUseOnlyFips) { |
kste | 47b6e17 | 2021-04-16 07:33:15 -0700 | [diff] [blame] | 46 | GTEST_SKIP() << "Not supported in FIPS-only mode"; |
| 47 | } |
| 48 | |
ambrosin | 113db29 | 2023-04-20 06:13:22 -0700 | [diff] [blame] | 49 | EXPECT_THAT(CheckFipsCompatibility<FipsIncompatible>(), IsOk()); |
| 50 | EXPECT_THAT(CheckFipsCompatibility<FipsCompatibleWithBoringCrypto>(), IsOk()); |
kste | 47b6e17 | 2021-04-16 07:33:15 -0700 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | TEST(FipsUtilsTest, CompatibilityInFipsMode) { |
ambrosin | 113db29 | 2023-04-20 06:13:22 -0700 | [diff] [blame] | 54 | if (!kUseOnlyFips || !IsFipsEnabledInSsl()) { |
kste | ccc0569 | 2021-04-16 09:29:25 -0700 | [diff] [blame] | 55 | GTEST_SKIP() |
| 56 | << "Test should only run in FIPS mode with Boringcrypto available."; |
kste | 47b6e17 | 2021-04-16 07:33:15 -0700 | [diff] [blame] | 57 | } |
| 58 | |
ambrosin | 113db29 | 2023-04-20 06:13:22 -0700 | [diff] [blame] | 59 | EXPECT_THAT(CheckFipsCompatibility<FipsIncompatible>(), |
lizatretyakova | 456657f | 2021-11-01 05:48:32 -0700 | [diff] [blame] | 60 | StatusIs(absl::StatusCode::kInternal)); |
ambrosin | 113db29 | 2023-04-20 06:13:22 -0700 | [diff] [blame] | 61 | EXPECT_THAT(CheckFipsCompatibility<FipsCompatibleWithBoringCrypto>(), IsOk()); |
kste | 47b6e17 | 2021-04-16 07:33:15 -0700 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | TEST(TinkFipsTest, CompatibilityInFipsModeWithoutBoringCrypto) { |
ambrosin | 113db29 | 2023-04-20 06:13:22 -0700 | [diff] [blame] | 65 | if (!kUseOnlyFips || IsFipsEnabledInSsl()) { |
kste | 47b6e17 | 2021-04-16 07:33:15 -0700 | [diff] [blame] | 66 | GTEST_SKIP() << "Test only run if BoringCrypto module is not available."; |
| 67 | } |
| 68 | |
| 69 | // In FIPS only mode compatibility checks should disallow algorithms |
| 70 | // with the FipsCompatibility::kNone flag. |
ambrosin | 113db29 | 2023-04-20 06:13:22 -0700 | [diff] [blame] | 71 | EXPECT_THAT(CheckFipsCompatibility<FipsIncompatible>(), |
lizatretyakova | 456657f | 2021-11-01 05:48:32 -0700 | [diff] [blame] | 72 | StatusIs(absl::StatusCode::kInternal)); |
kste | 47b6e17 | 2021-04-16 07:33:15 -0700 | [diff] [blame] | 73 | |
| 74 | // FIPS validated implementations are not allowed if BoringCrypto is not |
| 75 | // available. |
ambrosin | 113db29 | 2023-04-20 06:13:22 -0700 | [diff] [blame] | 76 | EXPECT_THAT(CheckFipsCompatibility<FipsCompatibleWithBoringCrypto>(), |
| 77 | StatusIs(absl::StatusCode::kInternal)); |
kste | 47b6e17 | 2021-04-16 07:33:15 -0700 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | } // namespace |
ambrosin | 113db29 | 2023-04-20 06:13:22 -0700 | [diff] [blame] | 81 | } // namespace internal |
kste | 47b6e17 | 2021-04-16 07:33:15 -0700 | [diff] [blame] | 82 | } // namespace tink |
| 83 | } // namespace crypto |