Home
last modified time | relevance | path

Searched refs:ApplyGalois (Results 1 – 3 of 3) sorted by relevance

/dports/security/seal/SEAL-3.7.2/native/tests/seal/util/
H A Dgalois.cpp79 TEST(GaloisToolTest, ApplyGalois) in TEST() argument
/dports/security/seal/SEAL-3.7.2/dotnet/tests/
H A DEvaluatorTests.cs599 … evaluator.ApplyGalois(encrypted, galoisElt: 1, galoisKeys: galoisKeys, destination: encdest); in ApplyGaloisTest()
607 … evaluator.ApplyGalois(encrypted, galoisElt: 1, galoisKeys: galoisKeys, destination: encdest); in ApplyGaloisTest()
615 … evaluator.ApplyGalois(encdest, galoisElt: 3, galoisKeys: galoisKeys, destination: encrypted); in ApplyGaloisTest()
625 … evaluator.ApplyGalois(encrypted, galoisElt: 5, galoisKeys: galoisKeys, destination: encdest); in ApplyGaloisTest()
1232 …Utilities.AssertThrows<ArgumentNullException>(() => evaluator.ApplyGalois(encrypted1, 1, galoisKey… in ExceptionsTest()
1233 …Utilities.AssertThrows<ArgumentNullException>(() => evaluator.ApplyGalois(encrypted1, 1, null, enc… in ExceptionsTest()
1234 …Utilities.AssertThrows<ArgumentNullException>(() => evaluator.ApplyGalois(null, 1, galoisKeys, enc… in ExceptionsTest()
1235 …Utilities.AssertThrows<ArgumentException>(() => evaluator.ApplyGalois(encrypted1, 1, galoisKeys, e… in ExceptionsTest()
/dports/security/seal/SEAL-3.7.2/dotnet/src/
H A DEvaluator.cs1175 ApplyGalois(encrypted, galoisElt, galoisKeys, destination: encrypted, pool: pool); in ApplyGaloisInplace()
1213 public void ApplyGalois(Ciphertext encrypted, uint galoisElt, GaloisKeys galoisKeys, in ApplyGalois() method in Microsoft.Research.SEAL.Evaluator