Home
last modified time | relevance | path

Searched refs:verified (Results 1 – 25 of 331) sorted by relevance

12345678910>>...14

/external/wycheproof/java/com/google/security/wycheproof/testcases/
DRsaSignatureTest.java1144 boolean verified = false; in testVectors()
1146 verified = verifier.verify(signatureBytes); in testVectors()
1150 if (first && !verified) { in testVectors()
1153 } else if (!first && verified) { in testVectors()
1212 boolean verified = false; in testLegacySignatures()
1214 verified = verifier.verify(signatureBytes); in testLegacySignatures()
1216 verified = false; in testLegacySignatures()
1218 if (verified) { in testLegacySignatures()
DEcdsaTest.java624 boolean verified = false; in testVectors()
626 verified = verifier.verify(signatureBytes); in testVectors()
630 verified = false; in testVectors()
632 if (!verified && isValidDER) { in testVectors()
636 if (verified && !isValidBER) { in testVectors()
DDsaTest.java696 boolean verified = false; in testVectors()
698 verified = verifier.verify(signatureBytes); in testVectors()
702 verified = false; in testVectors()
710 if (isValidDER && !verified) { in testVectors()
713 } else if (!isValidBER && verified) { in testVectors()
/external/ukey2/src/main/java/com/google/security/cryptauth/lib/securemessage/
DSecureMessageParser.java243 boolean verified = CryptoOps.verify(verificationKey, sigType, signature, signedData); in verifyHeaderAndBody()
251 verified &= (result.getHeader().getSignatureScheme() == sigType.getSigScheme()); in verifyHeaderAndBody()
252 verified &= (result.getHeader().getEncryptionScheme() == encType.getEncScheme()); in verifyHeaderAndBody()
254 verified &= (encType != EncType.NONE) || !result.getHeader().hasDecryptionKeyId(); in verifyHeaderAndBody()
257 verified &= (encType == EncType.NONE) || !sigType.isPublicKeyScheme() || in verifyHeaderAndBody()
260 verified &= (result.getHeader().getAssociatedDataLength() == associatedDataLength); in verifyHeaderAndBody()
262 verified = false; in verifyHeaderAndBody()
265 if (verified) { in verifyHeaderAndBody()
/external/mockito/src/main/java/org/mockito/internal/verification/
DInOrderContextImpl.java13 final IdentitySet verified = new IdentitySet(); field in InOrderContextImpl
16 return verified.contains(invocation); in isVerified()
20 verified.add(i); in markVerified()
/external/python/rsa/tests/
Dtest_integers.py45 verified = rsa.core.decrypt_int(signed, self.pub.e, self.pub.n)
46 print("\tVerified: %d" % verified)
48 self.assertEqual(message, verified)
/external/mockito/src/test/java/org/mockito/internal/exceptions/util/
DScenarioPrinterTest.java25 Invocation verified = new InvocationBuilder().simpleMethod().verified().toInvocation(); in shouldPrintInvocations() local
29 String out = sp.print((List) asList(verified, unverified)); in shouldPrintInvocations()
/external/mockito/src/test/java/org/mockito/internal/invocation/
DInvocationBuilder.java33 private boolean verified; field in InvocationBuilder
70 if (verified) { in toInvocation()
106 public InvocationBuilder verified() { in verified() method in InvocationBuilder
107 this.verified = true; in verified()
DInvocationMatcherTest.java86 Invocation verified = new InvocationBuilder().simpleMethod().verified().toInvocation(); in should_not_be_similar_to_verified_invocation() local
87 assertFalse(simpleMethod.hasSimilarMethod(verified)); in should_not_be_similar_to_verified_invocation()
/external/swiftshader/src/Vulkan/Debug/
DServer.cpp109 bool verified = false; in Impl() local
110 ctx->clientEventBroadcast()->onSetBreakpoint(reqBP.name, verified); in Impl()
113 resBP.verified = verified; in Impl()
148 bool verified = false; in Impl() local
149 ctx->clientEventBroadcast()->onSetBreakpoint(location, verified); in Impl()
152 respBP.verified = verified; in Impl()
178 bp.verified = false; in Impl()
/external/curl/docs/cmdline-opts/
Dinsecure.d9 By default, every SSL connection curl makes is verified to be secure. This
13 The server connection is verified by making sure the server's certificate
/external/mockito/src/main/java/org/mockito/internal/invocation/
DInterceptedInvocation.java32 private boolean verified; field in InterceptedInvocation
53 return verified || isIgnoredForVerification; in isVerified()
78 verified = true; in markVerified()
/external/ImageMagick/.github/
DPULL_REQUEST_TEMPLATE.md4 - [ ] I have verified that there are no overlapping [pull-requests](https://github.com/ImageMagick/…
5 - [ ] I have verified that I am following the existing coding patterns and practices as demonstrate…
/external/clang/bindings/python/tests/cindex/
Dtest_location.py65 verified = False
68 verified = True
70 assert verified
/external/deqp/doc/testspecs/GLES31/
Dfunctional.shaders.sample_variables.txt44 Values are verified with verifier fragment shader.
48 fragment output value and then texture contents are verified. With default
51 gl_SampleID output a non-zero green value. Result image is then verified to
68 verified for legality, uniqueness and distribution. With framebuffer and
69 renderbuffer render targets only the legality and distribution are verified.
70 Distribution is verified by averaging sample position values (texture) or by
Dfunctional.shaders.atomic_counter.txt48 the shader. Atomic counter values are verified by comparing against the
55 counters are verified separately.
57 Test cases using only atomicCounter() call are verified by checking that all
71 atomicCounterDecrement() are verified by counting how many times each value
Dfunctional.tessellation.txt71 comparisons, and thus not all rules are exactly verified (such as
90 winding mode specified in the TES. The patterns drawn are simple and verified by
98 value of gl_PatchVerticesIn is verified. The "quads" mode is used.
113 the cases with differing input and output patch sizes are verified with
115 gl_TessLevel*[] cases draw simple all-white patterns and are verified as such.
135 potential cracks are likely to become visible. The resulting image is verified
Dfunctional.image_load_store.txt50 of a FBO and read with glReadPixels(). Texture is verified with exact
54 mapping. Texture is verified with some tolerance.
82 result cases are verified by comparing the pixels of the first image to
84 of the operation. The results for the return value cases are verified by reading
119 verification result into a 2d r32ui image. The result is trivially verified.
/external/easymock/src/org/easymock/internal/
DMocksBehavior.java165 boolean verified = true; in verify()
170 verified = false; in verify()
173 if (verified) { in verify()
/external/llvm-project/clang/bindings/python/tests/cindex/
Dtest_location.py75 verified = False
78 verified = True
80 self.assertTrue(verified)
/external/autotest/server/site_tests/firmware_ECLidShutdown/
Dcontrol21 - Verifies the device does shutdown when verified boot starts while the lid
23 - Verifies the device does not shutdown when verified boot starts while the
/external/ipsec-tools/src/racoon/
Dnattraversal.c187 int verified = 0; in natt_compare_addr_hash() local
190 return verified; in natt_compare_addr_hash()
203 return verified; /* XXX should abort */ in natt_compare_addr_hash()
209 verified = 1; in natt_compare_addr_hash()
214 return verified; in natt_compare_addr_hash()
/external/skqp/src/compute/hs/cuda/bench/
Dmain.c402 bool verified = false; in hs_bench() local
424 verified = hs_verify_linear(hs_words,sorted_h,vout_h,count_padded_in); in hs_bench()
427 if (!verified) in hs_bench()
448 verify ? (verified ? " OK " : "*FAIL*") : "UNVERIFIED", in hs_bench()
465 if (verify && !verified) in hs_bench()
/external/deqp/doc/testspecs/GLES3/
Dfunctional.pbo.txt44 the write data is verified to be correct by mapping the buffer. Additionally,
46 is verified by doing the same operation without pack buffer and then comparing
/external/python/cpython3/Modules/_decimal/libmpdec/literature/
Dmulmod-ppro.txt101 (III) can easily be verified by substituting the largest possible
105 can be exhaustively verified with a test program.
126 (III) can easily be verified by substituting the largest possible
130 can be exhaustively verified with a test program.

12345678910>>...14