Home
last modified time | relevance | path

Searched refs:plain1 (Results 1 – 25 of 58) sorted by relevance

123

/dports/security/seal/SEAL-3.7.2/native/tests/seal/
H A Devaluator.cpp121 plain1 = "0"; in TEST()
131 plain1 = "0"; in TEST()
756 plain1 = "0"; in TEST()
766 plain1 = "0"; in TEST()
828 plain1 = "0"; in TEST()
836 plain1 = "0"; in TEST()
891 plain1 = "0"; in TEST()
899 plain1 = "0"; in TEST()
957 plain1 = "0"; in TEST()
3559 plain1 = "1"; in TEST()
[all …]
/dports/textproc/sphinxsearch/sphinx-2.2.11-release/test/test_246/
H A Dmodel.bin2 plain1 | local
14 plain1 | local
16 plain1 | local
28 plain1 | local
40 plain1 | local
42 plain1 | local
/dports/lang/ruby26/ruby-2.6.9/test/openssl/
H A Dtest_pkey_rsa.rb13 plain1 = key.public_decrypt(cipher, OpenSSL::PKey::RSA::NO_PADDING)
14 assert_equal(plain0, plain1)
19 plain1 = key.public_decrypt(cipher1, OpenSSL::PKey::RSA::PKCS1_PADDING)
20 assert_equal(plain0, plain1)
23 plain1 = key.public_decrypt(cipherdef)
24 assert_equal(plain0, plain1)
/dports/mail/postfix-current/postfix-3.7-20211107/src/global/
H A Dmail_addr_find.in7 maps inline:{plain1@1.example=plain2@2.example,{"aa bb"@cc.example="dd ee"@dd.example}}
8 test internal:external:external:default:plain1@1.example:plain2@2.example
12 test internal:internal:external:default:plain1@1.example:plain2@2.example
17 maps inline:{plain1@1.example=plain2@2.example,{"aa bb"@cc.example="dd ee"@dd.example}}
18 test internal:external:external:default:plain1+ext@1.example:plain2@2.example:+ext
22 test internal:internal:external:default:plain1+ext@1.example:plain2@2.example:+ext
38 maps inline:{plain1@1.example=plain2@2.example,@3.example=plain4@4.example,plain5@3.example=plain6@…
39 test external:external:external:default:plain1+ext@1.example:plain2@2.example:+ext
45 maps inline:{plain1@1.example=plain2@2.example,3.example=plain4@4.example,plain5@3.example=plain6@6…
46 test external:external:external:full|noext|domain:plain1+ext@1.example:plain2@2.example:+ext
[all …]
H A Dmail_addr_find.ref2 inline:{plain1@1.example=plain2@2.example,{"aa bb"@cc.example="dd ee"@dd.example}}
3 internal:plain1@1.example -external-> external:plain2@2.example (null extension)
7 internal:plain1@1.example -internal-> external:plain2@2.example (null extension)
11 inline:{plain1@1.example=plain2@2.example,{"aa bb"@cc.example="dd ee"@dd.example}}
12 internal:plain1+ext@1.example -external-> external:plain2@2.example (+ext)
16 internal:plain1+ext@1.example -internal-> external:plain2@2.example (+ext)
29 inline:{plain1@1.example=plain2@2.example,@3.example=plain4@4.example,plain5@3.example=plain6@6.exa…
30 external:plain1+ext@1.example -external-> external:plain2@2.example (+ext)
35 inline:{plain1@1.example=plain2@2.example,3.example=plain4@4.example,plain5@3.example=plain6@6.exam…
36 external:plain1+ext@1.example -external-> external:plain2@2.example (+ext)
[all …]
/dports/devel/cjose/cjose-0.6.1/test/
H A Dcheck_jwe.c164 size_t plain1_len = strlen(plain1); in _self_encrypt_self_decrypt_with_key()
165 cjose_jwe_t *jwe1 = cjose_jwe_encrypt(jwk, hdr, plain1, plain1_len, &err); in _self_encrypt_self_decrypt_with_key()
193 ck_assert_msg(plain2_len == strlen(plain1), in _self_encrypt_self_decrypt_with_key()
196 strlen(plain1), plain2_len); in _self_encrypt_self_decrypt_with_key()
207 static void _self_encrypt_self_decrypt(const char *plain1) in _self_encrypt_self_decrypt() argument
693 uint8_t *plain1 = cjose_jwe_decrypt(jwe, jwk, &plain1_len, &err); in START_TEST() local
694 ck_assert_msg(NULL != plain1, in START_TEST()
706 cjose_get_dealloc()(plain1); in START_TEST()
937 uint8_t *plain1 = cjose_jwe_decrypt(jwe, jwk, &plain1_len, &err); in START_TEST() local
938 ck_assert_msg(NULL != plain1, in START_TEST()
[all …]
H A Dcheck_jws.c81 static void _self_sign_self_verify(const char *plain1, const char *alg, cjose_err *err) in _self_sign_self_verify() argument
97 size_t plain1_len = strlen(plain1); in _self_sign_self_verify()
98 cjose_jws_t *jws1 = cjose_jws_sign(jwk, hdr, plain1, plain1_len, err); in _self_sign_self_verify()
132 …ck_assert_msg(plain2_len == strlen(plain1), "length of verified plaintext does not match length of… in _self_sign_self_verify()
134 strlen(plain1), plain2_len); in _self_sign_self_verify()
135 …ck_assert_msg(strncmp(plain1, plain2, plain2_len) == 0, "verified plaintext does not match signed … in _self_sign_self_verify()
/dports/security/seal/SEAL-3.7.2/dotnet/tests/
H A DPlaintextTests.cs309 Plaintext plain1 = new Plaintext(); in EqualsTest()
312 plain1.Reserve(10000); in EqualsTest()
315 plain1.Set("4x^3 + 5x^2 + 6x^1 + 7"); in EqualsTest()
318 Assert.AreEqual(10000ul, plain1.Capacity); in EqualsTest()
321 Assert.AreNotSame(plain1, plain2); in EqualsTest()
322 Assert.AreEqual(plain1, plain2); in EqualsTest()
324 Assert.IsFalse(plain1.Equals(null)); in EqualsTest()
354 Plaintext plain1 = new Plaintext("6x^40 + 5x^35 + 4x^30 + 3x^20 + 2x^10 + 5"); in HashCodeTest()
359 Assert.AreNotEqual(plain1.GetHashCode(), plain2.GetHashCode()); in HashCodeTest()
360 Assert.AreNotEqual(plain1.GetHashCode(), plain3.GetHashCode()); in HashCodeTest()
[all …]
H A DEvaluatorTests.cs95 encryptor.Encrypt(plain1, encrypted1); in AddTest()
109 plain1 = new Plaintext("1x^2 + 2x^1 + 3"); in AddTest()
112 encryptor.Encrypt(plain1, encrypted1); in AddTest()
229 encryptor.Encrypt(plain1, encrypted1); in SubTest()
239 plain1.Set("Ax^3 + Bx^2 + Cx^1 + D"); in SubTest()
242 encryptor.Encrypt(plain1, encrypted1); in SubTest()
1042 Plaintext plain1 = new Plaintext(); in RelinearizeTest()
1045 plain1.Set(0); in RelinearizeTest()
1046 encryptor.Encrypt(plain1, encrypted1); in RelinearizeTest()
1054 plain1.Set("1x^10 + 2"); in RelinearizeTest()
[all …]
H A DRelinKeysTests.cs133 Plaintext plain1 = new Plaintext(); in SeededKeyTest()
136 plain1.Set(0); in SeededKeyTest()
137 encryptor.Encrypt(plain1, encrypted1); in SeededKeyTest()
145 plain1.Set("1x^10 + 2"); in SeededKeyTest()
146 encryptor.Encrypt(plain1, encrypted1); in SeededKeyTest()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/
H A DHP_idea.java50 byte[] plain1; // Buffer for plaintext data. field in HP_idea
59 cipher_idea(plain1, crypt1, Z); // Encrypt plain1. in Do()
73 plain1 = new byte[array_rows]; in buildTestData()
110 plain1[i] = (byte) i; in buildTestData()
434 error = (plain1[i] != plain2[i]); in verify()
449 plain1 = null; in freeTestData()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/
H A DHP_idea.java50 byte[] plain1; // Buffer for plaintext data. field in HP_idea
59 cipher_idea(plain1, crypt1, Z); // Encrypt plain1. in Do()
73 plain1 = new byte[array_rows]; in buildTestData()
110 plain1[i] = (byte) i; in buildTestData()
434 error = (plain1[i] != plain2[i]); in verify()
449 plain1 = null; in freeTestData()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/
H A DHP_idea.java50 byte[] plain1; // Buffer for plaintext data. field in HP_idea
59 cipher_idea(plain1, crypt1, Z); // Encrypt plain1. in Do()
73 plain1 = new byte[array_rows]; in buildTestData()
110 plain1[i] = (byte) i; in buildTestData()
434 error = (plain1[i] != plain2[i]); in verify()
449 plain1 = null; in freeTestData()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/
H A DHP_idea.java50 byte[] plain1; // Buffer for plaintext data. field in HP_idea
59 cipher_idea(plain1, crypt1, Z); // Encrypt plain1. in Do()
73 plain1 = new byte[array_rows]; in buildTestData()
110 plain1[i] = (byte) i; in buildTestData()
434 error = (plain1[i] != plain2[i]); in verify()
449 plain1 = null; in freeTestData()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/
H A DHP_idea.java50 byte[] plain1; // Buffer for plaintext data. field in HP_idea
59 cipher_idea(plain1, crypt1, Z); // Encrypt plain1. in Do()
73 plain1 = new byte[array_rows]; in buildTestData()
110 plain1[i] = (byte) i; in buildTestData()
434 error = (plain1[i] != plain2[i]); in verify()
449 plain1 = null; in freeTestData()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/
H A DHP_idea.java50 byte[] plain1; // Buffer for plaintext data. field in HP_idea
59 cipher_idea(plain1, crypt1, Z); // Encrypt plain1. in Do()
73 plain1 = new byte[array_rows]; in buildTestData()
110 plain1[i] = (byte) i; in buildTestData()
434 error = (plain1[i] != plain2[i]); in verify()
449 plain1 = null; in freeTestData()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/
H A DHP_idea.java50 byte[] plain1; // Buffer for plaintext data. field in HP_idea
59 cipher_idea(plain1, crypt1, Z); // Encrypt plain1. in Do()
73 plain1 = new byte[array_rows]; in buildTestData()
110 plain1[i] = (byte) i; in buildTestData()
434 error = (plain1[i] != plain2[i]); in verify()
449 plain1 = null; in freeTestData()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/AES/
H A DAesCornerTests.cs66 MemoryStream plain1 = new MemoryStream(plainText); in TransformStateSeparation()
83 encryptionCollector1.Collect(encryptor1, plain1, 1 * blockSize); in TransformStateSeparation()
85 encryptionCollector1.Collect(encryptor1, plain1, 1 * blockSize); in TransformStateSeparation()
89 encryptionCollector1.Collect(encryptor1, plain1, 1 * blockSize); in TransformStateSeparation()
99 encryptionCollector1.Collect(encryptor1, plain1, 1 * blockSize); in TransformStateSeparation()
/dports/security/seal/SEAL-3.7.2/native/examples/
H A D6_serialization.cpp286 Plaintext plain1, plain2; in example_serialization() local
287 encoder.encode(2.3, scale, plain1); in example_serialization()
298 auto size_encrypted1 = encryptor.encrypt(plain1).save(data_stream); in example_serialization()
/dports/net/py-impacket/impacket-0.9.17/impacket/
H A Dcrypto.py324 plain1 = Crypt1.decrypt(Block1)
327 return plain1 + plain2
342 plain1 = Crypt1.encrypt(Block1)
345 return plain1 + plain2
/dports/security/seal/SEAL-3.7.2/dotnet/examples/
H A D6_Serialization.cs280 using Plaintext plain1 = new Plaintext(), in ExampleSerialization()
282 encoder.Encode(2.3, scale, plain1); in ExampleSerialization()
293 long sizeEncrypted1 = encryptor.Encrypt(plain1).Save(dataStream); in ExampleSerialization()
/dports/www/p5-HTML-Mason/HTML-Mason-1.59/t/
H A D07-interp.t404 <& plain1 &><& plain1 &><& plain1 &><& plain1 &><& plain1 &><& plain1 &><& plain1 &>
434 … $create_code_cache_test->('unlimited', 'plain1, plain2, plain3, plain4, plain5, plain6, plain7');
436 $create_code_cache_test->(4, 'plain1, plain2, plain7');
437 $create_code_cache_test->(8, 'plain1, plain2, plain3, plain5, plain6, plain7');
/dports/security/libgcrypt/libgcrypt-1.9.4/tests/
H A Dpubkey.c206 gcry_sexp_t plain1, cipher, l; in check_keys_crypt() local
226 rc = gcry_pk_decrypt (&plain1, cipher, skey); in check_keys_crypt()
243 l = gcry_sexp_find_token (plain1, "value", 0); in check_keys_crypt()
248 gcry_sexp_release (plain1); in check_keys_crypt()
256 x1 = gcry_sexp_nth_mpi (plain1, 0, GCRYMPI_FMT_USG); in check_keys_crypt()
257 gcry_sexp_release (plain1); in check_keys_crypt()
/dports/mail/thunderbird/thunderbird-91.8.0/comm/third_party/libgcrypt/tests/
H A Dpubkey.c206 gcry_sexp_t plain1, cipher, l; in check_keys_crypt() local
226 rc = gcry_pk_decrypt (&plain1, cipher, skey); in check_keys_crypt()
243 l = gcry_sexp_find_token (plain1, "value", 0); in check_keys_crypt()
248 gcry_sexp_release (plain1); in check_keys_crypt()
256 x1 = gcry_sexp_nth_mpi (plain1, 0, GCRYMPI_FMT_USG); in check_keys_crypt()
257 gcry_sexp_release (plain1); in check_keys_crypt()
/dports/devel/libfastjson/libfastjson-0.99.9/tests/
H A Dtest_printbuf.expected27 6, [plain1]

123