Searched refs:verify (Results 1 - 25 of 305) sorted by relevance

1234567891011>>

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
H A DRawContentVerifier.java16 boolean verify(byte[] digest, byte[] expected); method in interface:RawContentVerifier
H A DContentVerifier.java30 boolean verify(byte[] expected); method in interface:ContentVerifier
/external/openssl/crypto/ui/
H A Dui_compat.c59 int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify) argument
61 return UI_UTIL_read_pw_string(buf, length, prompt, verify);
64 int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) argument
66 return UI_UTIL_read_pw(buf, buff, size, prompt, verify);
H A Dui_util.c59 int UI_UTIL_read_pw_string(char *buf,int length,const char *prompt,int verify) argument
64 ret=UI_UTIL_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify);
69 int UI_UTIL_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) argument
81 if (ok >= 0 && verify)
H A Dui_compat.h77 int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify);
78 int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify);
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dtlsv1_common.c170 * verify key usage (must allow encryption)
194 int tls_verify_hash_init(struct tls_verify_hash *verify) argument
196 tls_verify_hash_free(verify);
197 verify->md5_client = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0);
198 verify->md5_server = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0);
199 verify->md5_cert = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0);
200 verify->sha1_client = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0);
201 verify->sha1_server = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0);
202 verify->sha1_cert = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0);
203 if (verify
226 tls_verify_hash_add(struct tls_verify_hash *verify, const u8 *buf, size_t len) argument
252 tls_verify_hash_free(struct tls_verify_hash *verify) argument
[all...]
/external/wpa_supplicant_8/src/tls/
H A Dtlsv1_common.c170 * verify key usage (must allow encryption)
194 int tls_verify_hash_init(struct tls_verify_hash *verify) argument
196 tls_verify_hash_free(verify);
197 verify->md5_client = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0);
198 verify->md5_server = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0);
199 verify->md5_cert = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0);
200 verify->sha1_client = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0);
201 verify->sha1_server = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0);
202 verify->sha1_cert = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0);
203 if (verify
226 tls_verify_hash_add(struct tls_verify_hash *verify, const u8 *buf, size_t len) argument
252 tls_verify_hash_free(struct tls_verify_hash *verify) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dtlsv1_common.c170 * verify key usage (must allow encryption)
194 int tls_verify_hash_init(struct tls_verify_hash *verify) argument
196 tls_verify_hash_free(verify);
197 verify->md5_client = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0);
198 verify->md5_server = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0);
199 verify->md5_cert = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0);
200 verify->sha1_client = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0);
201 verify->sha1_server = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0);
202 verify->sha1_cert = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0);
203 if (verify
226 tls_verify_hash_add(struct tls_verify_hash *verify, const u8 *buf, size_t len) argument
252 tls_verify_hash_free(struct tls_verify_hash *verify) argument
[all...]
/external/mockito/src/org/mockito/
H A DInOrder.java16 * inOrder.verify(firstMock).add("was called first");
17 * inOrder.verify(secondMock).add("was called second");
29 * Alias to <code>inOrder.verify(mock, times(1))</code>
35 * inOrder.verify(firstMock).someMethod("was called first");
36 * inOrder.verify(secondMock).someMethod("was called second");
45 <T> T verify(T mock); method in interface:InOrder
53 * inOrder.verify(firstMock, times(2)).someMethod("was called first two times");
54 * inOrder.verify(secondMock, atLeastOnce()).someMethod("was called second at least once");
64 <T> T verify(T mock, VerificationMode mode); method in interface:InOrder
79 * inOrder.verify(moc
[all...]
/external/apache-http/src/org/apache/http/conn/ssl/
H A DX509HostnameVerifier.java62 boolean verify(String host, SSLSession session); method in interface:X509HostnameVerifier
64 void verify(String host, SSLSocket ssl) throws IOException; method in interface:X509HostnameVerifier
66 void verify(String host, X509Certificate cert) throws SSLException; method in interface:X509HostnameVerifier
79 * @param host The hostname to verify.
82 void verify(String host, String[] cns, String[] subjectAlts) method in interface:X509HostnameVerifier
H A DBrowserCompatHostnameVerifier.java50 public final void verify( method in class:BrowserCompatHostnameVerifier
54 verify(host, cns, subjectAlts, false);
H A DStrictHostnameVerifier.java57 public final void verify( method in class:StrictHostnameVerifier
61 verify(host, cns, subjectAlts, true);
H A DAllowAllHostnameVerifier.java42 public final void verify( method in class:AllowAllHostnameVerifier
/external/junit/src/org/junit/rules/
H A DVerifier.java17 * &#064;Override public void verify() {
34 verify();
43 protected void verify() throws Throwable { method in class:Verifier
/external/guava/guava-tests/test/com/google/common/cache/
H A DForwardingLoadingCacheTest.java22 import static org.easymock.EasyMock.verify;
60 verify(mock);
67 verify(mock);
74 verify(mock);
81 verify(mock);
88 verify(mock);
95 verify(mock);
102 verify(mock);
109 verify(mock);
116 verify(moc
[all...]
H A DForwardingCacheTest.java22 import static org.easymock.EasyMock.verify;
60 verify(mock);
69 verify(mock);
76 verify(mock);
83 verify(mock);
90 verify(mock);
97 verify(mock);
104 verify(mock);
111 verify(mock);
118 verify(moc
[all...]
/external/littlemock/tests/com/google/testing/littlemock/
H A DLittleMockTest.java49 import static com.google.testing.littlemock.LittleMock.verify;
173 verify("hello").contains("something");
180 verify(createNotARealMock()).add("something");
187 verify(mFoo).add("something");
193 verify(mFoo).add("something");
194 verify(mFoo).add("something else");
200 verify(mFoo).add("something else");
201 verify(mFoo).add("something");
208 verify(mFoo).add("something");
216 verify(mFo
[all...]
/external/mockito/src/org/mockito/verification/
H A DVerificationMode.java16 * verify(mock, times(5)).someMethod(&quot;was called five times&quot;);
18 * verify(mock, never()).someMethod(&quot;was never called&quot;);
20 * verify(mock, atLeastOnce()).someMethod(&quot;was called at least once&quot;);
22 * verify(mock, atLeast(2)).someMethod(&quot;was called at least twice&quot;);
24 * verify(mock, atMost(3)).someMethod(&quot;was called at most 3 times&quot;);
30 * See examples in javadoc for {@link Mockito#verify(Object, VerificationMode)}
34 void verify(VerificationData data); method in interface:VerificationMode
/external/openssl/crypto/des/
H A Dread2pwd.c117 int DES_read_password(DES_cblock *key, const char *prompt, int verify) argument
122 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
130 int verify)
135 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
129 DES_read_2passwords(DES_cblock *key1, DES_cblock *key2, const char *prompt, int verify) argument
/external/mockito/src/org/mockito/internal/verification/
H A DMockAwareVerificationMode.java20 public void verify(VerificationData data) { method in class:MockAwareVerificationMode
21 mode.verify(data);
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DUncaughtExceptionHandlersTest.java21 import static org.easymock.EasyMock.verify;
45 verify(runtimeMock);
/external/openfst/src/script/
H A Dinfo.cc28 bool pipe, bool verify) {
29 InfoArgs args(f, test_properties, arc_filter, info_type, pipe, verify);
26 PrintFstInfo(const FstClass &f, bool test_properties, const string &arc_filter, const string &info_type, bool pipe, bool verify) argument
/external/openssl/include/openssl/
H A Dui_compat.h77 int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify);
78 int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify);
/external/apache-http/src/org/apache/http/protocol/
H A DHttpExpectationVerifier.java39 * Defines an interface to verify whether an incoming HTTP request meets
70 void verify(HttpRequest request, HttpResponse response, HttpContext context) method in interface:HttpExpectationVerifier
/external/bison/lib/
H A Dmbsinit.c23 #include "verify.h"
51 verify (sizeof (mbstate_t) >= 4);

Completed in 393 milliseconds

1234567891011>>