Searched refs:ctx (Results 26 - 50 of 1548) sorted by relevance

1234567891011>>

/macosx-10.9.5/bind9-45.100/bind9/lib/isc/
H A Dhmacmd5.c38 isc_hmacmd5_init(isc_hmacmd5_t *ctx, const unsigned char *key, argument
41 HMAC_Init(ctx, (const void *) key, (int) len, EVP_md5());
45 isc_hmacmd5_invalidate(isc_hmacmd5_t *ctx) { argument
46 HMAC_CTX_cleanup(ctx);
50 isc_hmacmd5_update(isc_hmacmd5_t *ctx, const unsigned char *buf, argument
53 HMAC_Update(ctx, buf, (int) len);
57 isc_hmacmd5_sign(isc_hmacmd5_t *ctx, unsigned char *digest) { argument
58 HMAC_Final(ctx, digest, NULL);
59 HMAC_CTX_cleanup(ctx);
72 isc_hmacmd5_init(isc_hmacmd5_t *ctx, cons argument
95 isc_hmacmd5_invalidate(isc_hmacmd5_t *ctx) argument
105 isc_hmacmd5_update(isc_hmacmd5_t *ctx, const unsigned char *buf, unsigned int len) argument
115 isc_hmacmd5_sign(isc_hmacmd5_t *ctx, unsigned char *digest) argument
138 isc_hmacmd5_verify(isc_hmacmd5_t *ctx, unsigned char *digest) argument
143 isc_hmacmd5_verify2(isc_hmacmd5_t *ctx, unsigned char *digest, size_t len) argument
[all...]
H A Dapp_api.c80 isc_app_ctxstart(isc_appctx_t *ctx) { argument
81 REQUIRE(ISCAPI_APPCTX_VALID(ctx));
83 return (ctx->methods->ctxstart(ctx));
87 isc_app_ctxrun(isc_appctx_t *ctx) { argument
88 REQUIRE(ISCAPI_APPCTX_VALID(ctx));
90 return (ctx->methods->ctxrun(ctx));
94 isc_app_ctxsuspend(isc_appctx_t *ctx) { argument
95 REQUIRE(ISCAPI_APPCTX_VALID(ctx));
101 isc_app_ctxshutdown(isc_appctx_t *ctx) argument
108 isc_app_ctxfinish(isc_appctx_t *ctx) argument
115 isc_appctx_settaskmgr(isc_appctx_t *ctx, isc_taskmgr_t *taskmgr) argument
123 isc_appctx_setsocketmgr(isc_appctx_t *ctx, isc_socketmgr_t *socketmgr) argument
131 isc_appctx_settimermgr(isc_appctx_t *ctx, isc_timermgr_t *timermgr) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/Security/
H A DsslTransport.c59 static OSStatus SSLProcessProtocolMessage(SSLRecord *rec, SSLContext *ctx);
60 static OSStatus SSLHandshakeProceed(SSLContext *ctx);
61 static OSStatus SSLInitConnection(SSLContext *ctx);
63 static Boolean isFalseStartAllowed(SSLContext *ctx) argument
65 SSL_CipherAlgorithm c=sslCipherSuiteGetSymmetricCipherAlgorithm(ctx->selectedCipher);
66 KeyExchangeMethod kem=sslCipherSuiteGetKeyExchangeMethod(ctx->selectedCipher);
83 (ctx->negAuthType==SSLClientAuthNone) ||
84 (ctx->negAuthType==SSLClientAuth_DSSSign) ||
85 (ctx->negAuthType==SSLClientAuth_RSASign) ||
86 (ctx
92 SSLWrite( SSLContext *ctx, const void * data, size_t dataLength, size_t *bytesWritten) argument
210 SSLRead( SSLContext *ctx, void * data, size_t dataLength, size_t *processed) argument
363 SSLHandshake(SSLContext *ctx) argument
413 SSLHandshakeProceed(SSLContext *ctx) argument
461 SSLInitConnection(SSLContext *ctx) argument
526 SSLProcessProtocolMessage(SSLRecord *rec, SSLContext *ctx) argument
560 SSLClose(SSLContext *ctx) argument
589 SSLGetBufferedReadSize(SSLContextRef ctx, size_t *bufSize) argument
[all...]
H A DsslCipherSpecs.h38 * Build ctx->validCipherSuites as a copy of all known CipherSpecs.
40 OSStatus sslBuildCipherSuiteArray(SSLContext *ctx);
45 void InitCipherSpecParams(SSLContext *ctx);
48 * Given a valid ctx->selectedCipher and ctx->validCipherSuites, set
49 * ctx->selectedCipherSpec as appropriate. Return an error if
50 * ctx->selectedCipher could not be set as the current ctx->selectedCipherSpec.
52 OSStatus FindCipherSpec(SSLContext *ctx);
H A DsslSession.h38 const SSLContext *ctx);
41 const SSLContext *ctx);
43 const SSLContext *ctx);
47 const SSLContext *ctx);
51 const SSLContext *ctx);
54 SSLContext *ctx);
H A DSSLRecordInternal.c33 struct SSLRecordInternalContext *ctx)
39 ortn = (ctx->read)(ctx->ioRef,
49 struct SSLRecordInternalContext *ctx)
55 ortn = (ctx->write)(ctx->ioRef,
64 SSLDisposeCipherSuite(CipherContext *cipher, struct SSLRecordInternalContext *ctx) argument
75 ctx->sslTslCalls->freeMac(cipher);
86 struct SSLRecordInternalContext *ctx)
92 secret.data = ctx
31 sslIoRead(SSLBuffer buf, size_t *actualLength, struct SSLRecordInternalContext *ctx) argument
47 sslIoWrite(SSLBuffer buf, size_t *actualLength, struct SSLRecordInternalContext *ctx) argument
83 SSLVerifyMac(uint8_t type, SSLBuffer *data, uint8_t *compareMAC, struct SSLRecordInternalContext *ctx) argument
175 InitCipherSpec(struct SSLRecordInternalContext *ctx, uint16_t selectedCipher) argument
193 struct SSLRecordInternalContext *ctx = ref; local
393 struct SSLRecordInternalContext *ctx = ref; local
408 struct SSLRecordInternalContext *ctx = ref; local
426 struct SSLRecordInternalContext *ctx = ref; local
443 struct SSLRecordInternalContext *ctx = ref; local
461 struct SSLRecordInternalContext *ctx = ref; local
550 struct SSLRecordInternalContext *ctx = ref; local
585 struct SSLRecordInternalContext *ctx= ref; local
613 struct SSLRecordInternalContext *ctx; local
647 struct SSLRecordInternalContext *ctx = ref; local
660 struct SSLRecordInternalContext *ctx = ref; local
670 struct SSLRecordInternalContext *ctx = ref; local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/lib/
H A DsslTransport.c59 static OSStatus SSLProcessProtocolMessage(SSLRecord *rec, SSLContext *ctx);
60 static OSStatus SSLHandshakeProceed(SSLContext *ctx);
61 static OSStatus SSLInitConnection(SSLContext *ctx);
63 static Boolean isFalseStartAllowed(SSLContext *ctx) argument
65 SSL_CipherAlgorithm c=sslCipherSuiteGetSymmetricCipherAlgorithm(ctx->selectedCipher);
66 KeyExchangeMethod kem=sslCipherSuiteGetKeyExchangeMethod(ctx->selectedCipher);
83 (ctx->negAuthType==SSLClientAuthNone) ||
84 (ctx->negAuthType==SSLClientAuth_DSSSign) ||
85 (ctx->negAuthType==SSLClientAuth_RSASign) ||
86 (ctx
92 SSLWrite( SSLContext *ctx, const void * data, size_t dataLength, size_t *bytesWritten) argument
210 SSLRead( SSLContext *ctx, void * data, size_t dataLength, size_t *processed) argument
363 SSLHandshake(SSLContext *ctx) argument
413 SSLHandshakeProceed(SSLContext *ctx) argument
461 SSLInitConnection(SSLContext *ctx) argument
526 SSLProcessProtocolMessage(SSLRecord *rec, SSLContext *ctx) argument
560 SSLClose(SSLContext *ctx) argument
589 SSLGetBufferedReadSize(SSLContextRef ctx, size_t *bufSize) argument
[all...]
H A DsslCipherSpecs.h38 * Build ctx->validCipherSuites as a copy of all known CipherSpecs.
40 OSStatus sslBuildCipherSuiteArray(SSLContext *ctx);
45 void InitCipherSpecParams(SSLContext *ctx);
48 * Given a valid ctx->selectedCipher and ctx->validCipherSuites, set
49 * ctx->selectedCipherSpec as appropriate. Return an error if
50 * ctx->selectedCipher could not be set as the current ctx->selectedCipherSpec.
52 OSStatus FindCipherSpec(SSLContext *ctx);
H A DsslSession.h38 const SSLContext *ctx);
41 const SSLContext *ctx);
43 const SSLContext *ctx);
47 const SSLContext *ctx);
51 const SSLContext *ctx);
54 SSLContext *ctx);
H A DSSLRecordInternal.c33 struct SSLRecordInternalContext *ctx)
39 ortn = (ctx->read)(ctx->ioRef,
49 struct SSLRecordInternalContext *ctx)
55 ortn = (ctx->write)(ctx->ioRef,
64 SSLDisposeCipherSuite(CipherContext *cipher, struct SSLRecordInternalContext *ctx) argument
75 ctx->sslTslCalls->freeMac(cipher);
86 struct SSLRecordInternalContext *ctx)
92 secret.data = ctx
31 sslIoRead(SSLBuffer buf, size_t *actualLength, struct SSLRecordInternalContext *ctx) argument
47 sslIoWrite(SSLBuffer buf, size_t *actualLength, struct SSLRecordInternalContext *ctx) argument
83 SSLVerifyMac(uint8_t type, SSLBuffer *data, uint8_t *compareMAC, struct SSLRecordInternalContext *ctx) argument
175 InitCipherSpec(struct SSLRecordInternalContext *ctx, uint16_t selectedCipher) argument
193 struct SSLRecordInternalContext *ctx = ref; local
393 struct SSLRecordInternalContext *ctx = ref; local
408 struct SSLRecordInternalContext *ctx = ref; local
426 struct SSLRecordInternalContext *ctx = ref; local
443 struct SSLRecordInternalContext *ctx = ref; local
461 struct SSLRecordInternalContext *ctx = ref; local
550 struct SSLRecordInternalContext *ctx = ref; local
585 struct SSLRecordInternalContext *ctx= ref; local
613 struct SSLRecordInternalContext *ctx; local
647 struct SSLRecordInternalContext *ctx = ref; local
660 struct SSLRecordInternalContext *ctx = ref; local
670 struct SSLRecordInternalContext *ctx = ref; local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/security_ssl/
H A DsslTransport.c59 static OSStatus SSLProcessProtocolMessage(SSLRecord *rec, SSLContext *ctx);
60 static OSStatus SSLHandshakeProceed(SSLContext *ctx);
61 static OSStatus SSLInitConnection(SSLContext *ctx);
63 static Boolean isFalseStartAllowed(SSLContext *ctx) argument
65 SSL_CipherAlgorithm c=sslCipherSuiteGetSymmetricCipherAlgorithm(ctx->selectedCipher);
66 KeyExchangeMethod kem=sslCipherSuiteGetKeyExchangeMethod(ctx->selectedCipher);
83 (ctx->negAuthType==SSLClientAuthNone) ||
84 (ctx->negAuthType==SSLClientAuth_DSSSign) ||
85 (ctx->negAuthType==SSLClientAuth_RSASign) ||
86 (ctx
92 SSLWrite( SSLContext *ctx, const void * data, size_t dataLength, size_t *bytesWritten) argument
210 SSLRead( SSLContext *ctx, void * data, size_t dataLength, size_t *processed) argument
363 SSLHandshake(SSLContext *ctx) argument
413 SSLHandshakeProceed(SSLContext *ctx) argument
461 SSLInitConnection(SSLContext *ctx) argument
526 SSLProcessProtocolMessage(SSLRecord *rec, SSLContext *ctx) argument
560 SSLClose(SSLContext *ctx) argument
589 SSLGetBufferedReadSize(SSLContextRef ctx, size_t *bufSize) argument
[all...]
H A DsslCipherSpecs.h38 * Build ctx->validCipherSuites as a copy of all known CipherSpecs.
40 OSStatus sslBuildCipherSuiteArray(SSLContext *ctx);
45 void InitCipherSpecParams(SSLContext *ctx);
48 * Given a valid ctx->selectedCipher and ctx->validCipherSuites, set
49 * ctx->selectedCipherSpec as appropriate. Return an error if
50 * ctx->selectedCipher could not be set as the current ctx->selectedCipherSpec.
52 OSStatus FindCipherSpec(SSLContext *ctx);
H A DsslSession.h38 const SSLContext *ctx);
41 const SSLContext *ctx);
43 const SSLContext *ctx);
47 const SSLContext *ctx);
51 const SSLContext *ctx);
54 SSLContext *ctx);
H A DSSLRecordInternal.c33 struct SSLRecordInternalContext *ctx)
39 ortn = (ctx->read)(ctx->ioRef,
49 struct SSLRecordInternalContext *ctx)
55 ortn = (ctx->write)(ctx->ioRef,
64 SSLDisposeCipherSuite(CipherContext *cipher, struct SSLRecordInternalContext *ctx) argument
75 ctx->sslTslCalls->freeMac(cipher);
86 struct SSLRecordInternalContext *ctx)
92 secret.data = ctx
31 sslIoRead(SSLBuffer buf, size_t *actualLength, struct SSLRecordInternalContext *ctx) argument
47 sslIoWrite(SSLBuffer buf, size_t *actualLength, struct SSLRecordInternalContext *ctx) argument
83 SSLVerifyMac(uint8_t type, SSLBuffer *data, uint8_t *compareMAC, struct SSLRecordInternalContext *ctx) argument
175 InitCipherSpec(struct SSLRecordInternalContext *ctx, uint16_t selectedCipher) argument
193 struct SSLRecordInternalContext *ctx = ref; local
393 struct SSLRecordInternalContext *ctx = ref; local
408 struct SSLRecordInternalContext *ctx = ref; local
426 struct SSLRecordInternalContext *ctx = ref; local
443 struct SSLRecordInternalContext *ctx = ref; local
461 struct SSLRecordInternalContext *ctx = ref; local
550 struct SSLRecordInternalContext *ctx = ref; local
585 struct SSLRecordInternalContext *ctx= ref; local
613 struct SSLRecordInternalContext *ctx; local
647 struct SSLRecordInternalContext *ctx = ref; local
660 struct SSLRecordInternalContext *ctx = ref; local
670 struct SSLRecordInternalContext *ctx = ref; local
[all...]
/macosx-10.9.5/OpenSSH-186/osslshim/ossl/
H A Dossl-hmac.c65 HMAC_CTX_init(HMAC_CTX *ctx) argument
67 memset(ctx, 0, sizeof(*ctx));
72 HMAC_CTX_cleanup(HMAC_CTX *ctx) argument
74 EVP_MD_CTX_cleanup(&ctx->md_ctx);
75 EVP_MD_CTX_cleanup(&ctx->i_ctx);
76 EVP_MD_CTX_cleanup(&ctx->o_ctx);
81 HMAC_size(const HMAC_CTX *ctx) argument
83 return (EVP_MD_size(ctx->md));
88 HMAC_Init_ex(HMAC_CTX *ctx, argument
144 HMAC_Init(HMAC_CTX *ctx, const void *key, size_t keylen, const EVP_MD *md) argument
154 HMAC_Update(HMAC_CTX *ctx, const void *data, size_t len) argument
161 HMAC_Final(HMAC_CTX *ctx, void *md, unsigned int *len) argument
179 HMAC_CTX ctx; local
[all...]
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/lib/tests/
H A Dtestsuite.c84 static void run_internal(idn_testsuite_t ctx, char *titles[]);
87 static void put_failure_message(idn_testsuite_t ctx, const char *msg,
93 idn_testsuite_t ctx = NULL; local
97 ctx = (idn_testsuite_t) malloc(sizeof(struct idn_testsuite));
98 if (ctx == NULL)
101 ctx->testcases = NULL;
102 ctx->ntestcases = 0;
103 ctx->testcase_size = 0;
104 ctx->npassed = 0;
105 ctx
129 idn_testsuite_destroy(idn_testsuite_t ctx) argument
142 idn_testsuite_addtestcase(idn_testsuite_t ctx, const char *title, idn_testsuite_testproc_t proc) argument
180 idn_testsuite_ntestcases(idn_testsuite_t ctx) argument
186 idn_testsuite_setverbose(idn_testsuite_t ctx) argument
192 idn_testsuite_unsetverbose(idn_testsuite_t ctx) argument
198 run_internal(idn_testsuite_t ctx, char *titles[]) argument
256 idn_testsuite_runall(idn_testsuite_t ctx) argument
262 idn_testsuite_run(idn_testsuite_t ctx, char *titles[]) argument
268 idn_testsuite_npassed(idn_testsuite_t ctx) argument
274 idn_testsuite_nfailed(idn_testsuite_t ctx) argument
280 idn_testsuite_nskipped(idn_testsuite_t ctx) argument
286 idn_testsuite_getstatus(idn_testsuite_t ctx) argument
292 idn_testsuite_setstatus(idn_testsuite_t ctx, idn_teststatus_t status) argument
323 idn_testsuite_assert(idn_testsuite_t ctx, const char *msg, const char *file, int lineno) argument
334 idn_testsuite_assertint(idn_testsuite_t ctx, int gotten, int expected, const char *file, int lineno) argument
351 idn_testsuite_assertstring(idn_testsuite_t ctx, const char *gotten, const char *expected, const char *file, int lineno) argument
385 idn_testsuite_assertptr(idn_testsuite_t ctx, const void *gotten, const void *expected, const char *file, int lineno) argument
407 idn_testsuite_assertptrne(idn_testsuite_t ctx, const void *gotten, const void *unexpected, const char *file, int lineno) argument
430 idn_testsuite_assertresult(idn_testsuite_t ctx, idn_result_t gotten, idn_result_t expected, const char *file, int lineno) argument
449 idn_testsuite_assertucs4string(idn_testsuite_t ctx, const unsigned long *gotten, const unsigned long *expected, const char *file, int lineno) argument
554 put_failure_message(idn_testsuite_t ctx, const char *msg, const char *file, int lineno) argument
[all...]
/macosx-10.9.5/eap8021x-180/EAP8021X.fproj/
H A Dchap.c51 CC_MD5_CTX ctx; local
54 CC_MD5_Init(&ctx);
55 CC_MD5_Update(&ctx, &identifier, sizeof(identifier));
56 CC_MD5_Update(&ctx, password, password_len);
57 CC_MD5_Update(&ctx, challenge, challenge_len);
58 CC_MD5_Final(hash, &ctx);
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/generic/
H A Drmd128.c63 static void CountLength _ANSI_ARGS_ ((ripemd_context* ctx,
131 ripemd_context* ctx = (ripemd_context*) context;
133 ripemd128_MDinit (ctx->state);
134 memset (ctx->buf, '\0', CHUNK_SIZE);
136 ctx->byteCount = 0;
137 ctx->lowc = 0;
138 ctx->highc = 0;
166 ripemd_context* ctx = (ripemd_context*) context;
168 ctx->buf [ctx
129 ripemd_context* ctx = (ripemd_context*) context; local
163 ripemd_context* ctx = (ripemd_context*) context; local
204 ripemd_context* ctx = (ripemd_context*) context; local
283 ripemd_context* ctx = (ripemd_context*) context; local
[all...]
H A Drmd160.c63 static void CountLength _ANSI_ARGS_ ((ripemd_context* ctx,
131 ripemd_context* ctx = (ripemd_context*) context;
133 ripemd160_MDinit (ctx->state);
134 memset (ctx->buf, '\0', CHUNK_SIZE);
136 ctx->byteCount = 0;
137 ctx->lowc = 0;
138 ctx->highc = 0;
166 ripemd_context* ctx = (ripemd_context*) context;
168 ctx->buf [ctx
129 ripemd_context* ctx = (ripemd_context*) context; local
163 ripemd_context* ctx = (ripemd_context*) context; local
204 ripemd_context* ctx = (ripemd_context*) context; local
283 ripemd_context* ctx = (ripemd_context*) context; local
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/mech/
H A Dgss_delete_sec_context.c37 struct _gss_context *ctx = (struct _gss_context *) *context_handle; local
45 if (ctx) {
46 if (ctx->gc_replaced_cred)
47 gss_release_cred(&junk, &ctx->gc_replaced_cred);
50 * If we have an implementation ctx, delete it,
53 if (ctx->gc_ctx) {
54 major_status = ctx->gc_mech->gm_delete_sec_context(
55 minor_status, &ctx->gc_ctx, output_token);
57 free(ctx);
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Ducsmap.c114 static unsigned long *save_mapped_sequence(idn_ucsmap_t ctx,
122 idn_ucsmap_t ctx; local
128 if ((ctx = malloc(sizeof(*ctx))) == NULL) {
133 ctx->entry_size = 0;
134 ctx->nentries = 0;
135 ctx->entries = NULL;
136 ctx->mapdata = NULL;
137 ctx->mapdata_size = 0;
138 ctx
146 idn_ucsmap_destroy(idn_ucsmap_t ctx) argument
161 idn_ucsmap_incrref(idn_ucsmap_t ctx) argument
168 idn_ucsmap_add(idn_ucsmap_t ctx, unsigned long ucs, unsigned long *map, size_t maplen) argument
223 idn_ucsmap_fix(idn_ucsmap_t ctx) argument
266 idn_ucsmap_map(idn_ucsmap_t ctx, unsigned long v, unsigned long *to, size_t tolen, size_t *maplenp) argument
326 save_mapped_sequence(idn_ucsmap_t ctx, unsigned long *map, size_t maplen) argument
[all...]
H A Ddelimitermap.c79 idn_delimitermap_t ctx = NULL; local
85 ctx = (idn_delimitermap_t) malloc(sizeof(struct idn_delimitermap));
86 if (ctx == NULL) {
92 ctx->delimiters = (unsigned long *) malloc(sizeof(unsigned long)
94 if (ctx->delimiters == NULL) {
98 ctx->ndelimiters = 0;
99 ctx->delimiter_size = DELIMITERMAP_INITIAL_DELIMITER_SIZE;
100 ctx->reference_count = 1;
101 *ctxp = ctx;
106 free(ctx);
112 idn_delimitermap_destroy(idn_delimitermap_t ctx) argument
130 idn_delimitermap_incrref(idn_delimitermap_t ctx) argument
141 idn_delimitermap_add(idn_delimitermap_t ctx, unsigned long delimiter) argument
176 idn_delimitermap_addall(idn_delimitermap_t ctx, unsigned long *delimiters, int ndelimiters) argument
199 idn_delimitermap_map(idn_delimitermap_t ctx, const unsigned long *from, unsigned long *to, size_t tolen) argument
[all...]
H A Dresconf.c127 static idn_result_t parse_conf(idn_resconf_t ctx, FILE *fp);
128 static idn_result_t parse_idn_encoding(idn_resconf_t ctx, char *args,
130 static idn_result_t parse_local_map(idn_resconf_t ctx, char *args,
132 static idn_result_t parse_nameprep(idn_resconf_t ctx, char *args,
135 static void resetconf(idn_resconf_t ctx);
137 static idn_result_t update_local_converter(idn_resconf_t ctx);
139 static idn_result_t setdefaults_body(idn_resconf_t ctx, int conf_mask);
175 idn_resconf_t ctx = NULL; local
186 if ((ctx = malloc(sizeof(*ctx)))
326 idn_resconf_loadfile(idn_resconf_t ctx, const char *file) argument
368 idn_resconf_destroy(idn_resconf_t ctx) argument
386 idn_resconf_incrref(idn_resconf_t ctx) argument
397 idn_resconf_getalternateconverter(idn_resconf_t ctx) argument
406 idn_resconf_getdelimitermap(idn_resconf_t ctx) argument
417 idn_resconf_getidnconverter(idn_resconf_t ctx) argument
428 idn_resconf_getauxidnconverter(idn_resconf_t ctx) argument
439 idn_resconf_getlocalconverter(idn_resconf_t ctx) argument
458 idn_resconf_getlocalmapselector(idn_resconf_t ctx) argument
469 idn_resconf_getmapper(idn_resconf_t ctx) argument
480 idn_resconf_getnormalizer(idn_resconf_t ctx) argument
491 idn_resconf_getprohibitchecker(idn_resconf_t ctx) argument
502 idn_resconf_getunassignedchecker(idn_resconf_t ctx) argument
513 idn_resconf_getbidichecker(idn_resconf_t ctx) argument
524 idn_resconf_setalternateconverter(idn_resconf_t ctx, idn_converter_t alternate_converter) argument
532 idn_resconf_setdelimitermap(idn_resconf_t ctx, idn_delimitermap_t delimiter_mapper) argument
546 idn_resconf_setidnconverter(idn_resconf_t ctx, idn_converter_t idn_converter) argument
560 idn_resconf_setauxidnconverter(idn_resconf_t ctx, idn_converter_t aux_idn_converter) argument
574 idn_resconf_setlocalconverter(idn_resconf_t ctx, idn_converter_t local_converter) argument
597 idn_resconf_setlocalmapselector(idn_resconf_t ctx, idn_mapselector_t local_mapper) argument
611 idn_resconf_setmapper(idn_resconf_t ctx, idn_mapper_t mapper) argument
624 idn_resconf_setnormalizer(idn_resconf_t ctx, idn_normalizer_t normalizer) argument
637 idn_resconf_setprohibitchecker(idn_resconf_t ctx, idn_checker_t prohibit_checker) argument
651 idn_resconf_setunassignedchecker(idn_resconf_t ctx, idn_checker_t unassigned_checker) argument
665 idn_resconf_setbidichecker(idn_resconf_t ctx, idn_checker_t bidi_checker) argument
679 idn_resconf_setnameprepversion(idn_resconf_t ctx, const char *version) argument
793 idn_resconf_setalternateconvertername(idn_resconf_t ctx, const char *name, int flags) argument
804 idn_resconf_setidnconvertername(idn_resconf_t ctx, const char *name, int flags) argument
826 idn_resconf_setauxidnconvertername(idn_resconf_t ctx, const char *name, int flags) argument
855 idn_resconf_setlocalconvertername(idn_resconf_t ctx, const char *name, int flags) argument
889 idn_resconf_addalldelimitermapucs(idn_resconf_t ctx, unsigned long *v, int nv) argument
906 idn_resconf_addalllocalmapselectornames(idn_resconf_t ctx, const char *tld, const char **names, int nnames) argument
926 idn_resconf_addallmappernames(idn_resconf_t ctx, const char **names, int nnames) argument
945 idn_resconf_addallnormalizernames(idn_resconf_t ctx, const char **names, int nnames) argument
964 idn_resconf_addallprohibitcheckernames(idn_resconf_t ctx, const char **names, int nnames) argument
997 idn_resconf_addallunassignedcheckernames(idn_resconf_t ctx, const char **names, int nnames) argument
1031 idn_resconf_addallbidicheckernames(idn_resconf_t ctx, const char **names, int nnames) argument
1064 parse_conf(idn_resconf_t ctx, FILE *fp) argument
1156 parse_idn_encoding(idn_resconf_t ctx, char *args, int lineno) argument
1181 parse_local_map(idn_resconf_t ctx, char *args, int lineno) argument
1220 parse_nameprep(idn_resconf_t ctx, char *args, int lineno) argument
1369 resetconf(idn_resconf_t ctx) argument
1386 update_local_converter(idn_resconf_t ctx) argument
1430 idn_resconf_setdefaults(idn_resconf_t ctx) argument
1450 setdefaults_body(idn_resconf_t ctx, int conf_mask) argument
[all...]
/macosx-10.9.5/ntp-88/lib/isc/
H A Dhmacsha.c42 isc_hmacsha1_init(isc_hmacsha1_t *ctx, const unsigned char *key, argument
48 memset(ctx->key, 0, sizeof(ctx->key));
49 if (len > sizeof(ctx->key)) {
53 isc_sha1_final(&sha1ctx, ctx->key);
55 memcpy(ctx->key, key, len);
57 isc_sha1_init(&ctx->sha1ctx);
60 ipad[i] ^= ctx->key[i];
61 isc_sha1_update(&ctx->sha1ctx, ipad, sizeof(ipad));
65 isc_hmacsha1_invalidate(isc_hmacsha1_t *ctx) { argument
76 isc_hmacsha1_update(isc_hmacsha1_t *ctx, const unsigned char *buf, unsigned int len) argument
86 isc_hmacsha1_sign(isc_hmacsha1_t *ctx, unsigned char *digest, size_t len) argument
112 isc_hmacsha1_verify(isc_hmacsha1_t *ctx, unsigned char *digest, size_t len) argument
124 isc_hmacsha224_init(isc_hmacsha224_t *ctx, const unsigned char *key, unsigned int len) argument
147 isc_hmacsha224_invalidate(isc_hmacsha224_t *ctx) argument
157 isc_hmacsha224_update(isc_hmacsha224_t *ctx, const unsigned char *buf, unsigned int len) argument
167 isc_hmacsha224_sign(isc_hmacsha224_t *ctx, unsigned char *digest, size_t len) argument
192 isc_hmacsha224_verify(isc_hmacsha224_t *ctx, unsigned char *digest, size_t len) argument
204 isc_hmacsha256_init(isc_hmacsha256_t *ctx, const unsigned char *key, unsigned int len) argument
227 isc_hmacsha256_invalidate(isc_hmacsha256_t *ctx) argument
237 isc_hmacsha256_update(isc_hmacsha256_t *ctx, const unsigned char *buf, unsigned int len) argument
247 isc_hmacsha256_sign(isc_hmacsha256_t *ctx, unsigned char *digest, size_t len) argument
272 isc_hmacsha256_verify(isc_hmacsha256_t *ctx, unsigned char *digest, size_t len) argument
284 isc_hmacsha384_init(isc_hmacsha384_t *ctx, const unsigned char *key, unsigned int len) argument
307 isc_hmacsha384_invalidate(isc_hmacsha384_t *ctx) argument
317 isc_hmacsha384_update(isc_hmacsha384_t *ctx, const unsigned char *buf, unsigned int len) argument
327 isc_hmacsha384_sign(isc_hmacsha384_t *ctx, unsigned char *digest, size_t len) argument
352 isc_hmacsha384_verify(isc_hmacsha384_t *ctx, unsigned char *digest, size_t len) argument
364 isc_hmacsha512_init(isc_hmacsha512_t *ctx, const unsigned char *key, unsigned int len) argument
387 isc_hmacsha512_invalidate(isc_hmacsha512_t *ctx) argument
397 isc_hmacsha512_update(isc_hmacsha512_t *ctx, const unsigned char *buf, unsigned int len) argument
407 isc_hmacsha512_sign(isc_hmacsha512_t *ctx, unsigned char *digest, size_t len) argument
432 isc_hmacsha512_verify(isc_hmacsha512_t *ctx, unsigned char *digest, size_t len) argument
[all...]
/macosx-10.9.5/xnu-2422.115.4/libkern/libkern/crypto/
H A Dsha2.h50 ccdigest_ctx_decl(CCSHA256_STATE_SIZE, CCSHA256_BLOCK_SIZE, ctx);
54 ccdigest_ctx_decl(CCSHA512_STATE_SIZE, CCSHA512_BLOCK_SIZE, ctx);
61 void SHA256_Init(SHA256_CTX *ctx);
62 void SHA256_Update(SHA256_CTX *ctx, const void *data, size_t len);
63 void SHA256_Final(void *digest, SHA256_CTX *ctx);
65 void SHA384_Init(SHA384_CTX *ctx);
66 void SHA384_Update(SHA384_CTX *ctx, const void *data, size_t len);
67 void SHA384_Final(void *digest, SHA384_CTX *ctx);
69 void SHA512_Init(SHA512_CTX *ctx);
70 void SHA512_Update(SHA512_CTX *ctx, cons
[all...]

Completed in 318 milliseconds

1234567891011>>