From 5a3de2e93747ac3f108e35c3cd66df88ab163c7e Mon Sep 17 00:00:00 2001 From: SecAgg Team Date: Wed, 31 Dec 2025 19:07:39 -0800 Subject: [PATCH] No public description PiperOrigin-RevId: 850869467 --- shell_encryption/montgomery_test.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shell_encryption/montgomery_test.cc b/shell_encryption/montgomery_test.cc index 8b933a4..690599c 100644 --- a/shell_encryption/montgomery_test.cc +++ b/shell_encryption/montgomery_test.cc @@ -884,18 +884,18 @@ TYPED_TEST(MontgomeryTest, BatchOperations) { std::vector expected_add, expected_sub, expected_mul, expected_fma; TypeParam scalar = - TypeParam::ImportRandom(prng.get(), modulus_params.get()).value(); + TypeParam::ImportRandom(prng, modulus_params.get()).value(); auto [scalar_constant, scalar_constant_barrett] = scalar.GetConstant(modulus_params.get()); std::vector expected_add_scalar, expected_sub_scalar, expected_mul_scalar; for (size_t i = 0; i < length; i++) { a.push_back( - TypeParam::ImportRandom(prng.get(), modulus_params.get()).value()); + TypeParam::ImportRandom(prng, modulus_params.get()).value()); b.push_back( - TypeParam::ImportRandom(prng.get(), modulus_params.get()).value()); + TypeParam::ImportRandom(prng, modulus_params.get()).value()); c.push_back( - TypeParam::ImportRandom(prng.get(), modulus_params.get()).value()); + TypeParam::ImportRandom(prng, modulus_params.get()).value()); auto [constant, constant_barrett] = b[i].GetConstant(modulus_params.get()); b_constant.push_back(constant);