Searched refs:purpose (Results 1 - 25 of 58) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/src/
H A Dtool_cb_skt.h32 curlsocktype purpose);
H A Dtool_cb_skt.c44 int tool_sockopt_cb(void *userdata, curl_socket_t curlfd, curlsocktype purpose) argument
55 switch(purpose) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/libtest/
H A Dlib500.c31 curlsocktype purpose,
35 (void)purpose;
30 tst_opensocket(void *clientp, curlsocktype purpose, struct curl_sockaddr *addr) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/docs/examples/
H A Dexternalsocket.c56 curlsocktype purpose,
66 curlsocktype purpose)
55 opensocket(void *clientp, curlsocktype purpose, struct curl_sockaddr *address) argument
65 sockopt_callback(void *clientp, curl_socket_t curlfd, curlsocktype purpose) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/apps/
H A Dverify.c73 static int check(X509_STORE *ctx, char *file, STACK_OF(X509) *uchain, STACK_OF(X509) *tchain, int purpose, ENGINE *e);
83 int purpose = -1; local
124 else if (strcmp(*argv,"-purpose") == 0)
131 BIO_printf(bio_err, "unrecognized purpose\n");
135 purpose = X509_PURPOSE_get_id(xptmp);
221 if (argc < 1) check(cert_ctx, NULL, untrusted, trusted, purpose, e);
224 check(cert_ctx,argv[i], untrusted, trusted, purpose, e);
228 BIO_printf(bio_err,"usage: verify [-verbose] [-CApath path] [-CAfile file] [-purpose purpose] [-crl_check]");
248 static int check(X509_STORE *ctx, char *file, STACK_OF(X509) *uchain, STACK_OF(X509) *tchain, int purpose, ENGIN argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/apps/
H A Dverify.c73 static int check(X509_STORE *ctx, char *file, STACK_OF(X509) *uchain, STACK_OF(X509) *tchain, int purpose, ENGINE *e);
83 int purpose = -1; local
211 if (argc < 1) check(cert_ctx, NULL, untrusted, trusted, purpose, e);
214 check(cert_ctx,argv[i], untrusted, trusted, purpose, e);
218 BIO_printf(bio_err,"usage: verify [-verbose] [-CApath path] [-CAfile file] [-purpose purpose] [-crl_check]");
239 static int check(X509_STORE *ctx, char *file, STACK_OF(X509) *uchain, STACK_OF(X509) *tchain, int purpose, ENGINE *e) argument
263 if(purpose >= 0) X509_STORE_CTX_set_purpose(csc, purpose);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/x509v3/
H A Dv3_purp.c101 return (*a)->purpose - (*b)->purpose;
123 int X509_PURPOSE_set(int *p, int purpose) argument
125 if(X509_PURPOSE_get_by_id(purpose) == -1) {
129 *p = purpose;
157 int X509_PURPOSE_get_by_id(int purpose) argument
161 if((purpose >= X509_PURPOSE_MIN) && (purpose <= X509_PURPOSE_MAX))
162 return purpose - X509_PURPOSE_MIN;
163 tmp.purpose
[all...]
H A Dx509v3.h361 int purpose; member in struct:x509_purpose_st
533 int X509_PURPOSE_set(int *p, int purpose);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/x509v3/
H A Dv3_purp.c101 return (*a)->purpose - (*b)->purpose;
123 int X509_PURPOSE_set(int *p, int purpose) argument
125 if(X509_PURPOSE_get_by_id(purpose) == -1) {
129 *p = purpose;
157 int X509_PURPOSE_get_by_id(int purpose) argument
161 if((purpose >= X509_PURPOSE_MIN) && (purpose <= X509_PURPOSE_MAX))
162 return purpose - X509_PURPOSE_MIN;
163 tmp.purpose
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/x509/
H A Dx509_vpm.c75 param->purpose = 0;
171 x509_verify_param_copy(purpose, 0);
234 int X509_VERIFY_PARAM_set_purpose(X509_VERIFY_PARAM *param, int purpose) argument
236 return X509_PURPOSE_set(&param->purpose, purpose);
321 0, /* purpose */
331 X509_PURPOSE_SMIME_SIGN, /* purpose */
341 X509_PURPOSE_SSL_CLIENT, /* purpose */
351 X509_PURPOSE_SSL_SERVER, /* purpose */
H A Dx509_vfy.h170 int purpose; /* purpose to check untrusted certificates */ member in struct:X509_VERIFY_PARAM_st
388 int X509_STORE_set_purpose(X509_STORE *ctx, int purpose);
455 int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose);
458 int purpose, int trust);
485 int X509_VERIFY_PARAM_set_purpose(X509_VERIFY_PARAM *param, int purpose);
H A Dx509_vfy.c287 /* We have the chain complete: now we need to check its purpose */
389 * with the supplied purpose
483 if (ctx->param->purpose > 0)
485 ret = X509_check_purpose(x, ctx->param->purpose,
1258 int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose) argument
1260 return X509_STORE_CTX_purpose_inherit(ctx, 0, purpose, 0);
1268 /* This function is used to set the X509_STORE_CTX purpose and trust
1270 * own trust and purpose values which (if set) will be inherited by
1272 * purpose in mind which should then be used to set the trust value.
1274 * purpose an
1278 X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose, int purpose, int trust) argument
[all...]
H A Dx509_lu.c551 int X509_STORE_set_purpose(X509_STORE *ctx, int purpose) argument
553 return X509_VERIFY_PARAM_set_purpose(ctx->param, purpose);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/x509/
H A Dx509_vfy.c283 /* We have the chain complete: now we need to check its purpose */
371 * with the supplied purpose
448 if (ctx->purpose > 0)
450 ret = X509_check_purpose(x, ctx->purpose,
1067 int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose) argument
1069 return X509_STORE_CTX_purpose_inherit(ctx, 0, purpose, 0);
1077 /* This function is used to set the X509_STORE_CTX purpose and trust
1079 * own trust and purpose values which (if set) will be inherited by
1081 * purpose in mind which should then be used to set the trust value.
1083 * purpose an
1087 X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose, int purpose, int trust) argument
[all...]
H A Dx509_vfy.h175 int purpose; member in struct:x509_store_st
220 int purpose; /* purpose to check untrusted certificates */ member in struct:x509_store_ctx_st
339 int X509_STORE_set_purpose(X509_STORE *ctx, int purpose);
404 int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose);
407 int purpose, int trust);
H A Dx509_lu.c190 ret->purpose = 0;
546 int X509_STORE_set_purpose(X509_STORE *ctx, int purpose) argument
548 return X509_PURPOSE_set(&ctx->purpose, purpose);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/include/openssl/
H A Dx509_vfy.h175 int purpose; member in struct:x509_store_st
220 int purpose; /* purpose to check untrusted certificates */ member in struct:x509_store_ctx_st
339 int X509_STORE_set_purpose(X509_STORE *ctx, int purpose);
404 int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose);
407 int purpose, int trust);
H A Dx509v3.h361 int purpose; member in struct:x509_purpose_st
533 int X509_PURPOSE_set(int *p, int purpose);
H A Dssl.h713 int purpose; /* Purpose setting */ member in struct:ssl_ctx_st
855 int purpose; /* Purpose setting */ member in struct:ssl_st
1309 int SSL_CTX_set_purpose(SSL_CTX *s, int purpose);
1310 int SSL_set_purpose(SSL *s, int purpose);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Dx509_vfy.h170 int purpose; /* purpose to check untrusted certificates */ member in struct:X509_VERIFY_PARAM_st
388 int X509_STORE_set_purpose(X509_STORE *ctx, int purpose);
455 int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose);
458 int purpose, int trust);
485 int X509_VERIFY_PARAM_set_purpose(X509_VERIFY_PARAM *param, int purpose);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/doc/examples/
H A Dindex.py107 purpose = info['purpose']
108 output.write(" <purpose>%s</purpose>\n" % escape(purpose));
110 print "Example %s lacks a purpose description" % (filename)
144 if topic != "purpose" and topic != "usage" and \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/
H A Dopenssl.spec25 protocols as well as a full-strength general purpose cryptography library.
46 protocols as well as a full-strength general purpose cryptography library.
67 protocols as well as a full-strength general purpose cryptography library.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/
H A Dopenssl.spec25 protocols as well as a full-strength general purpose cryptography library.
46 protocols as well as a full-strength general purpose cryptography library.
67 protocols as well as a full-strength general purpose cryptography library.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/ssl/
H A Dssl_lib.c281 s->purpose = ctx->purpose;
394 int SSL_CTX_set_purpose(SSL_CTX *s, int purpose) argument
396 return X509_PURPOSE_set(&s->purpose, purpose);
399 int SSL_set_purpose(SSL *s, int purpose) argument
401 return X509_PURPOSE_set(&s->purpose, purpose);
1977 ret->purpose=s->purpose;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/cs46xx/imgs/
H A Dcwcdma.asp28 // The purpose of this code is very simple: make it possible to tranfser

Completed in 346 milliseconds

123