Skip to content

Commit 35c7414

Browse files
SHELL Teamcopybara-github
authored andcommitted
No public description
PiperOrigin-RevId: 887098851
1 parent fcbd938 commit 35c7414

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

shell_encryption/montgomery_test.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -884,18 +884,18 @@ TYPED_TEST(MontgomeryTest, BatchOperations) {
884884
std::vector<TypeParam> expected_add, expected_sub, expected_mul,
885885
expected_fma;
886886
TypeParam scalar =
887-
TypeParam::ImportRandom(prng.get(), modulus_params.get()).value();
887+
TypeParam::ImportRandom(prng, modulus_params.get()).value();
888888
auto [scalar_constant, scalar_constant_barrett] =
889889
scalar.GetConstant(modulus_params.get());
890890
std::vector<TypeParam> expected_add_scalar, expected_sub_scalar,
891891
expected_mul_scalar;
892892
for (size_t i = 0; i < length; i++) {
893893
a.push_back(
894-
TypeParam::ImportRandom(prng.get(), modulus_params.get()).value());
894+
TypeParam::ImportRandom(prng, modulus_params.get()).value());
895895
b.push_back(
896-
TypeParam::ImportRandom(prng.get(), modulus_params.get()).value());
896+
TypeParam::ImportRandom(prng, modulus_params.get()).value());
897897
c.push_back(
898-
TypeParam::ImportRandom(prng.get(), modulus_params.get()).value());
898+
TypeParam::ImportRandom(prng, modulus_params.get()).value());
899899
auto [constant, constant_barrett] =
900900
b[i].GetConstant(modulus_params.get());
901901
b_constant.push_back(constant);

0 commit comments

Comments
 (0)