Searched refs:context (Results 251 - 275 of 3914) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/Heimdal-323.92.1/kdc/
H A Dkstash.c36 krb5_context context; variable
74 krb5_program_setup(&context, argc, argv, args, num_args, NULL);
84 krb5_errx(context, 1, "random-key and master-key-fd "
88 asprintf(&keyfile, "%s/m-key", hdb_db_dir(context));
90 ret = krb5_string_to_enctype(context, enctype_str, &enctype);
92 krb5_err(context, 1, ret, "krb5_string_to_enctype");
94 ret = hdb_read_master_key(context, keyfile, &mkey);
96 krb5_err(context, 1, ret, "reading master key from %s", keyfile);
100 krb5_err(context, 1, ret, "reading master key from %s", keyfile);
109 ret = krb5_generate_random_keyblock(context, enctyp
[all...]
H A Dconfig.c131 add_one_address (krb5_context context, const char *str, int first) argument
136 ret = krb5_parse_address (context, str, &tmp);
138 krb5_err (context, 1, ret, "parse_address `%s'", str);
140 krb5_copy_addresses(context, &tmp, &explicit_addresses);
142 krb5_append_addresses(context, &explicit_addresses, &tmp);
143 krb5_free_addresses (context, &tmp);
147 configure(krb5_context context, int argc, char **argv) argument
167 ret = hdb_list_builtin(context, &list);
169 krb5_err(context, 1, ret, "listing builtin hdb backends");
184 asprintf(&config_file, "%s/kdc.conf", hdb_db_dir(context));
[all...]
/macosx-10.9.5/bless-98/
H A DhandleDevice.c50 int modeDevice(BLContextPtr context, struct clarg actargs[klast]) { argument
59 blesscontextprintf(context, kBLLogLevelError, "Not run as root\n" );
63 ret = BLGetPreBootEnvironmentType(context, &preboot);
65 blesscontextprintf(context, kBLLogLevelError, "Could not determine preboot environment\n");
73 ret = BLLoadFile(context, actargs[klabelfile].argument, 0, &labeldata);
75 blesscontextprintf(context, kBLLogLevelError, "Can't load label '%s'\n",
80 ret = BLGenerateLabelData(context, actargs[klabel].argument, kBitmapScale_1x, &labeldata);
82 blesscontextprintf(context, kBLLogLevelError, "Can't render scale 1 label '%s'\n",
86 ret = BLGenerateLabelData(context, actargs[klabel].argument, kBitmapScale_2x, &labeldata2);
88 blesscontextprintf(context, kBLLogLevelErro
[all...]
/macosx-10.9.5/DiskArbitration-266/DiskArbitration/
H A DDiskArbitration.h177 * @param context The user-defined context parameter given to the registration function.
180 typedef void ( *DADiskAppearedCallback )( DADiskRef disk, void * context );
188 * @param context The user-defined context parameter to pass to the callback function.
194 void * context );
201 * @param context The user-defined context parameter given to the registration function.
204 typedef void ( *DADiskDescriptionChangedCallback )( DADiskRef disk, CFArrayRef keys, void * context );
213 * @param context Th
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DGenericCallback.h47 explicit CallbackBase(void* context) argument
48 : m_context(context)
53 void* context() const { return m_context; } function in class:WebKit::CallbackBase
70 static PassRefPtr<VoidCallback> create(void* context, CallbackFunction callback) argument
72 return adoptRef(new VoidCallback(context, callback));
85 m_callback(0, context());
96 m_callback(toAPI(error.get()), context());
102 VoidCallback(void* context, CallbackFunction callback) argument
103 : CallbackBase(context)
116 static PassRefPtr<GenericCallback> create(void* context, CallbackFunctio argument
146 GenericCallback(void* context, CallbackFunction callback) argument
160 create(void* context, CallbackFunction callback) argument
191 ComputedPagesCallback(void* context, CallbackFunction callback) argument
204 create(void* context, CallbackFunction callback) argument
236 ImageCallback(void* context, CallbackFunction callback) argument
[all...]
/macosx-10.9.5/securityd-55199.3/src/
H A Dlocaldatabase.cpp71 void LocalDatabase::generateSignature(const Context &context, Key &key, argument
74 context.replace(CSSM_ATTRIBUTE_KEY, myKey(key).cssmKey());
75 key.validate(CSSM_ACL_AUTHORIZATION_SIGN, context);
76 CssmClient::Sign signer(Server::csp(), context.algorithm(), signOnlyAlgorithm);
77 signer.override(context);
81 void LocalDatabase::verifySignature(const Context &context, Key &key, argument
84 context.replace(CSSM_ATTRIBUTE_KEY, myKey(key).cssmKey());
85 CssmClient::Verify verifier(Server::csp(), context.algorithm(), verifyOnlyAlgorithm);
86 verifier.override(context);
90 void LocalDatabase::generateMac(const Context &context, Ke argument
100 verifyMac(const Context &context, Key &key, const CssmData &data, const CssmData &mac) argument
114 encrypt(const Context &context, Key &key, const CssmData &clear, CssmData &cipher) argument
129 decrypt(const Context &context, Key &key, const CssmData &cipher, CssmData &clear) argument
150 generateKey(const Context &context, const AccessCredentials *cred, const AclEntryPrototype *owner, uint32 usage, uint32 attrs, RefPointer<Key> &newKey) argument
167 generateKey(const Context &context, const AccessCredentials *cred, const AclEntryPrototype *owner, uint32 pubUsage, uint32 pubAttrs, uint32 privUsage, uint32 privAttrs, RefPointer<Key> &publicKey, RefPointer<Key> &privateKey) argument
198 wrapKey(const Context &context, const AccessCredentials *cred, Key *wrappingKey, Key &keyToBeWrapped, const CssmData &descriptiveData, CssmKey &wrappedKey) argument
215 unwrapKey(const Context &context, const AccessCredentials *cred, const AclEntryPrototype *owner, Key *wrappingKey, Key *publicKey, CSSM_KEYUSE usage, CSSM_KEYATTR_FLAGS attrs, const CssmKey wrappedKey, RefPointer<Key> &unwrappedKey, CssmData &descriptiveData) argument
247 deriveKey(const Context &context, Key *key, const AccessCredentials *cred, const AclEntryPrototype *owner, CssmData *param, uint32 usage, uint32 attrs, RefPointer<Key> &derivedKey) argument
271 getOutputSize(const Context &context, Key &key, uint32 inputSize, bool encrypt, uint32 &result) argument
[all...]
/macosx-10.9.5/Heimdal-323.92.1/appl/kf/
H A Dkf.c37 krb5_context context; variable
68 client_setup(krb5_context *context, int *argc, char **argv) argument
76 status = krb5_init_context (context);
80 forwardable = krb5_config_get_bool (*context, NULL,
110 port = krb5_getportbyname (*context, KF_PORT_NAME, "tcp", KF_PORT_NUM);
139 status = krb5_auth_con_init (context, &auth_context);
141 krb5_warn (context, status, "krb5_auth_con_init");
145 status = krb5_auth_con_setaddrs_from_fd (context,
149 krb5_auth_con_free(context, auth_context);
150 krb5_warn (context, statu
[all...]
/macosx-10.9.5/Heimdal-323.92.1/kpasswd/
H A Dkpasswd.c58 change_password(krb5_context context, argument
75 ret = krb5_unparse_name(context, principal, &name);
77 krb5_err(context, 1, ret, "krb5_unparse_name");
83 krb5_errx (context, 1, "out of memory");
93 ret = krb5_set_password_using_ccache(context, id, pwbuf,
99 krb5_warn (context, ret, "krb5_set_password_using_ccache");
103 printf ("%s%s%.*s\n", krb5_passwd_result_to_string(context, result_code),
119 krb5_context context; local
128 ret = krb5_init_context (&context);
144 ret = krb5_init_context (&context);
[all...]
/macosx-10.9.5/MITKerberosShim-62.1/
H A Dcache.c41 krb5_cc_default(mit_krb5_context context, mit_krb5_ccache *cache) argument
44 return heim_krb5_cc_default(HC(context), (krb5_ccache *)cache);
48 krb5_cc_resolve(mit_krb5_context context, const char *str, mit_krb5_ccache *cache) argument
51 return heim_krb5_cc_resolve(HC(context), str, (krb5_ccache *)cache);
55 krb5_cc_initialize(mit_krb5_context context, argument
61 return heim_krb5_cc_initialize(HC(context), (krb5_ccache)cache, p->heim);
65 krb5_cc_store_cred(mit_krb5_context context, argument
72 mshim_mcred2hcred(HC(context), creds, &hcred);
73 ret = heim_krb5_cc_store_cred(HC(context), (krb5_ccache)cache, &hcred);
74 heim_krb5_free_cred_contents(HC(context),
79 krb5_cc_get_principal(mit_krb5_context context, mit_krb5_ccache cache, mit_krb5_principal *principal) argument
101 krb5_cc_close(mit_krb5_context context, mit_krb5_ccache cache) argument
108 krb5_cc_get_name(mit_krb5_context context, mit_krb5_ccache cache) argument
114 krb5_cc_get_type(mit_krb5_context context, mit_krb5_ccache cache) argument
120 krb5_cc_get_config(mit_krb5_context context, mit_krb5_ccache id, mit_krb5_const_principal principal, const char *key, mit_krb5_data *data) argument
141 krb5_cc_new_unique(mit_krb5_context context, const char *type, const char *hint, mit_krb5_ccache *id) argument
151 krb5_cc_gen_new(mit_krb5_context context, mit_krb5_ccache *id) argument
158 krb5_cc_cache_match(mit_krb5_context context, mit_krb5_principal client, mit_krb5_ccache *id) argument
181 krb5_cc_retrieve_cred(mit_krb5_context context, mit_krb5_ccache cache, mit_krb5_flags flags, mit_krb5_creds *mcreds, mit_krb5_creds *creds) argument
211 krb5_cc_next_cred(mit_krb5_context context, mit_krb5_ccache cache, mit_krb5_cc_cursor *cursor, mit_krb5_creds *creds) argument
232 krb5_cc_end_seq_get(mit_krb5_context context, mit_krb5_ccache cache, mit_krb5_cc_cursor *cursor) argument
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/hx509/
H A Dkeyset.c69 _hx509_ks_type(hx509_context context, const char *type) argument
73 for (i = 0; i < context->ks_num_ops; i++)
74 if (strcasecmp(type, context->ks_ops[i]->name) == 0)
75 return context->ks_ops[i];
81 _hx509_ks_register(hx509_context context, struct hx509_keyset_ops *ops) argument
85 if (_hx509_ks_type(context, ops->name))
88 val = realloc(context->ks_ops,
89 (context->ks_num_ops + 1) * sizeof(context->ks_ops[0]));
92 val[context
126 hx509_certs_init(hx509_context context, const char *name, int flags, hx509_lock lock, hx509_certs *certs) argument
198 hx509_certs_store(hx509_context context, hx509_certs certs, int flags, hx509_lock lock) argument
254 hx509_certs_start_seq(hx509_context context, hx509_certs certs, hx509_cursor *cursor) argument
290 hx509_certs_next_cert(hx509_context context, hx509_certs certs, hx509_cursor cursor, hx509_cert *cert) argument
312 hx509_certs_end_seq(hx509_context context, hx509_certs certs, hx509_cursor cursor) argument
337 hx509_certs_iter_f(hx509_context context, hx509_certs certs, int (*func)(hx509_context, void *, hx509_cert), void *ctx) argument
387 certs_iter(hx509_context context, void *ctx, hx509_cert cert) argument
409 hx509_certs_iter(hx509_context context, hx509_certs certs, int (^func)(hx509_cert)) argument
432 hx509_ci_print_names(hx509_context context, void *ctx, hx509_cert c) argument
469 hx509_certs_add(hx509_context context, hx509_certs certs, hx509_cert cert) argument
496 hx509_certs_find(hx509_context context, hx509_certs certs, const hx509_query *q, hx509_cert *r) argument
562 hx509_certs_filter(hx509_context context, hx509_certs certs, const hx509_query *q, hx509_certs *result) argument
617 certs_merge_func(hx509_context context, void *ctx, hx509_cert c) argument
636 hx509_certs_merge(hx509_context context, hx509_certs to, hx509_certs from) argument
659 hx509_certs_append(hx509_context context, hx509_certs to, hx509_lock lock, const char *name) argument
688 hx509_get_one_cert(hx509_context context, hx509_certs certs, hx509_cert *c) argument
731 hx509_certs_info(hx509_context context, hx509_certs certs, int (*func)(void *, const char *), void *ctx) argument
766 _hx509_certs_keys_get(hx509_context context, hx509_certs certs, hx509_private_key **keys) argument
778 _hx509_certs_keys_add(hx509_context context, hx509_certs certs, hx509_private_key key) argument
794 _hx509_certs_keys_free(hx509_context context, hx509_private_key *keys) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/irc/
H A Dpicoirc.tcl52 set context [namespace current]::irc[incr uid]
53 upvar #0 $context irc
62 Callback $context init
64 fileevent $irc(socket) readable [list [namespace origin Read] $context]
65 fileevent $irc(socket) writable [list [namespace origin Write] $context]
66 return $context
69 proc ::picoirc::Callback {context state args} {
70 upvar #0 $context irc
73 if {[catch {eval $irc(callback) [list $context $state] $args} err]} {
79 proc ::picoirc::Version {context} {
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/tests/
H A DJSNode.c35 static JSValueRef JSNode_appendChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
40 if (!JSValueIsObjectOfClass(context, thisObject, JSNode_class(context))) {
42 *exception = JSValueMakeString(context, message);
44 } else if (argumentCount < 1 || !JSValueIsObjectOfClass(context, arguments[0], JSNode_class(context))) {
46 *exception = JSValueMakeString(context, message);
50 Node* child = JSObjectGetPrivate(JSValueToObject(context, arguments[0], NULL));
55 return JSValueMakeUndefined(context);
58 static JSValueRef JSNode_removeChild(JSContextRef context, JSObjectRe argument
77 JSNode_replaceChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
105 JSNode_getNodeType(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) argument
121 JSNode_getChildNodes(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) argument
131 JSNode_getFirstChild(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) argument
147 JSNode_initialize(JSContextRef context, JSObjectRef object) argument
165 JSNode_class(JSContextRef context) argument
182 JSNode_new(JSContextRef context, Node* node) argument
187 JSNode_construct(JSContextRef context, JSObjectRef object, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
[all...]
/macosx-10.9.5/Heimdal-323.92.1/kuser/
H A Dkdeltkt.c68 krb5_context context; local
78 ret = krb5_init_context(&context);
83 ret = krb5_string_to_enctype(context, etypestr, &etype);
85 krb5_err(context, 1, ret, "Can't convert enctype %s", etypestr);
93 ret = krb5_cc_resolve(context, ccachestr, &ccache);
95 ret = krb5_cc_default(context, &ccache);
97 krb5_err(context, 1, ret, "Can't open credentials cache");
99 ret = krb5_cc_get_principal(context, ccache, &me);
101 krb5_err(context, 1, ret, "Can't get client principal");
110 ret = krb5_parse_name(context, name
[all...]
/macosx-10.9.5/smb-697.95.1/kernel/netsmb/
H A Dsmb_conn_2.h30 struct smb_rq **in_rqp, vfs_context_t context);
32 struct smb_rq **compound_rqp, vfs_context_t context);
36 vfs_context_t context);
38 struct smb_rq **compound_rqp, vfs_context_t context);
44 vfs_context_t context);
45 int smb2_smb_flush(struct smb_share *share, SMBFID fid, vfs_context_t context);
47 vfs_context_t context);
49 struct smb_rq **compound_rqp, vfs_context_t context);
51 uint32_t lease_state, uint32_t *ret_lease_state, vfs_context_t context);
53 off_t offset, uint64_t length, vfs_context_t context);
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/kadm5/
H A Dset_keys.c43 _kadm5_set_keys(kadm5_server_context *context, argument
52 ret = hdb_generate_key_set_password(context->context,
60 _kadm5_free_keys (context->context, ent->keys.len, ent->keys.val);
64 hdb_entry_set_pw_change_time(context->context, ent, 0);
66 if (krb5_config_get_bool_default(context->context, NULL, FALSE,
69 ret = hdb_entry_set_password(context
100 _kadm5_set_keys2(kadm5_server_context *context, hdb_entry *ent, int16_t n_key_data, krb5_key_data *key_data) argument
269 _kadm5_set_keys3(kadm5_server_context *context, hdb_entry *ent, int n_keys, krb5_keyblock *keyblocks) argument
327 _kadm5_set_keys_randomly(kadm5_server_context *context, hdb_entry *ent, int n_ks_tuple, krb5_key_salt_tuple *ks_tuple, krb5_keyblock **new_keys, int *n_keys) argument
[all...]
H A Dchpass_c.c46 kadm5_client_context *context = server_handle; local
59 krb5_clear_error_message(context->context);
67 ret = _kadm5_client_send(context, sp);
71 ret = _kadm5_client_recv(context, &reply);
76 krb5_clear_error_message(context->context);
81 krb5_clear_error_message(context->context);
94 kadm5_client_context *context local
[all...]
/macosx-10.9.5/Heimdal-323.92.1/kcm/
H A Dacquire.c41 kcm_ccache_acquire(krb5_context context, argument
60 krb5_abortx(context,
64 krb5_abortx(context,
73 kcm_internal_ccache(context, ccache, &ccdata);
77 ret = krb5_unparse_name(context, ccache->server, &in_tkt_service);
85 realm = krb5_principal_get_realm(context, ccache->client);
87 ret = krb5_get_init_creds_opt_alloc(context, &opt);
90 krb5_get_init_creds_opt_set_default_flags(context, "kcm", realm, opt);
97 ret = krb5_get_init_creds_password(context,
107 ret = krb5_get_init_creds_keytab(context,
[all...]
H A Dclient.c39 kcm_ccache_resolve_client(krb5_context context, argument
47 ret = kcm_ccache_resolve_by_name(context, name, ccache);
53 ret = kcm_access(context, client, opcode, *ccache);
56 kcm_release_ccache(context, *ccache);
63 kcm_ccache_destroy_client(krb5_context context, argument
70 ret = kcm_ccache_resolve_by_name(context, name, &ccache);
76 ret = kcm_access(context, client, KCM_OP_DESTROY, ccache);
77 kcm_release_ccache(context, ccache);
81 return kcm_ccache_destroy(context, name);
85 kcm_ccache_new_client(krb5_context context, argument
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/krb5/
H A Dexpand_hostname.c37 copy_hostname(krb5_context context, argument
43 krb5_set_error_message(context, ENOMEM,
56 * @param context a Keberos context
67 krb5_expand_hostname (krb5_context context, argument
74 if ((context->flags & KRB5_CTX_F_DNS_CANONICALIZE_HOSTNAME) == 0)
75 return copy_hostname (context, orig_hostname, new_hostname);
82 return copy_hostname (context, orig_hostname, new_hostname);
88 krb5_set_error_message(context, ENOMEM,
97 return copy_hostname (context, orig_hostnam
105 vanilla_hostname(krb5_context context, const char *orig_hostname, char **new_hostname, char ***realms) argument
144 krb5_expand_hostname_realms(krb5_context context, const char *orig_hostname, char **new_hostname, char ***realms) argument
[all...]
H A Dwrite_message.c37 krb5_write_message (krb5_context context, argument
47 if (krb5_net_write (context, p_fd, buf, 4) != 4
48 || krb5_net_write (context, p_fd, data->data, len) != len) {
50 krb5_set_error_message (context, ret, "write: %s", strerror(ret));
57 krb5_write_priv_message(krb5_context context, argument
65 ret = krb5_mk_priv (context, ac, data, &packet, NULL);
68 ret = krb5_write_message(context, p_fd, &packet);
74 krb5_write_safe_message(krb5_context context, argument
81 ret = krb5_mk_safe (context, ac, data, &packet, NULL);
84 ret = krb5_write_message(context, p_f
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/mac/
H A DPDFDocumentImageMac.mm48 bool CGContextGetAllowsFontSmoothing(CGContextRef context);
49 bool CGContextGetAllowsFontSubpixelQuantization(CGContextRef context);
74 void PDFDocumentImage::drawPDFPage(GraphicsContext* context)
76 CGContextTranslateCTM(context->platformContext(), -m_cropBox.x(), -m_cropBox.y());
78 LocalCurrentGraphicsContext localCurrentContext(context);
81 // on the context's state stack. (<rdar://problem/14951759>)
82 bool allowsSmoothing = CGContextGetAllowsFontSmoothing(context->platformContext());
83 bool allowsSubpixelQuantization = CGContextGetAllowsFontSubpixelQuantization(context->platformContext());
87 CGContextSetAllowsFontSmoothing(context->platformContext(), allowsSmoothing);
88 CGContextSetAllowsFontSubpixelQuantization(context
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/generic/
H A Dcrc.c48 static void MDcrc_Start _ANSI_ARGS_ ((VOID* context));
49 static void MDcrc_Update _ANSI_ARGS_ ((VOID* context, unsigned int character));
50 static void MDcrc_UpdateBuf _ANSI_ARGS_ ((VOID* context, unsigned char* buffer, int bufLen));
51 static void MDcrc_Final _ANSI_ARGS_ ((VOID* context, VOID* digest));
126 MDcrc_Start (context)
127 VOID* context;
131 *((crcword*) context) = CRCINIT;
155 MDcrc_Update (context, character)
156 VOID* context;
166 accu = *((crcword*) context);
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/
H A Dsha2.c69 isc_sha224_init(isc_sha224_t *context) { argument
70 if (context == (isc_sha224_t *)0) {
73 EVP_DigestInit(context, EVP_sha224());
77 isc_sha224_invalidate(isc_sha224_t *context) { argument
78 EVP_MD_CTX_cleanup(context);
82 isc_sha224_update(isc_sha224_t *context, const isc_uint8_t* data, size_t len) { argument
89 REQUIRE(context != (isc_sha224_t *)0 && data != (isc_uint8_t*)0);
91 EVP_DigestUpdate(context, (const void *) data, len);
95 isc_sha224_final(isc_uint8_t digest[], isc_sha224_t *context) { argument
97 REQUIRE(context !
108 isc_sha256_init(isc_sha256_t *context) argument
116 isc_sha256_invalidate(isc_sha256_t *context) argument
121 isc_sha256_update(isc_sha256_t *context, const isc_uint8_t *data, size_t len) argument
134 isc_sha256_final(isc_uint8_t digest[], isc_sha256_t *context) argument
147 isc_sha512_init(isc_sha512_t *context) argument
155 isc_sha512_invalidate(isc_sha512_t *context) argument
159 isc_sha512_update(isc_sha512_t *context, const isc_uint8_t *data, size_t len) argument
171 isc_sha512_final(isc_uint8_t digest[], isc_sha512_t *context) argument
184 isc_sha384_init(isc_sha384_t *context) argument
192 isc_sha384_invalidate(isc_sha384_t *context) argument
197 isc_sha384_update(isc_sha384_t *context, const isc_uint8_t* data, size_t len) argument
210 isc_sha384_final(isc_uint8_t digest[], isc_sha384_t *context) argument
559 isc_sha224_init(isc_sha224_t *context) argument
570 isc_sha224_invalidate(isc_sha224_t *context) argument
575 isc_sha224_update(isc_sha224_t *context, const isc_uint8_t* data, size_t len) argument
580 isc_sha224_final(isc_uint8_t digest[], isc_sha224_t *context) argument
589 isc_sha256_init(isc_sha256_t *context) argument
600 isc_sha256_invalidate(isc_sha256_t *context) argument
641 isc_sha256_transform(isc_sha256_t *context, const isc_uint32_t* data) argument
703 isc_sha256_transform(isc_sha256_t *context, const isc_uint32_t* data) argument
787 isc_sha256_update(isc_sha256_t *context, const isc_uint8_t *data, size_t len) argument
843 isc_sha256_final(isc_uint8_t digest[], isc_sha256_t *context) argument
915 isc_sha512_init(isc_sha512_t *context) argument
926 isc_sha512_invalidate(isc_sha512_t *context) argument
966 isc_sha512_transform(isc_sha512_t *context, const isc_uint64_t* data) argument
1025 isc_sha512_transform(isc_sha512_t *context, const isc_uint64_t* data) argument
1106 isc_sha512_update(isc_sha512_t *context, const isc_uint8_t *data, size_t len) argument
1161 isc_sha512_last(isc_sha512_t *context) argument
1206 isc_sha512_final(isc_uint8_t digest[], isc_sha512_t *context) argument
1238 isc_sha384_init(isc_sha384_t *context) argument
1249 isc_sha384_invalidate(isc_sha384_t *context) argument
1254 isc_sha384_update(isc_sha384_t *context, const isc_uint8_t* data, size_t len) argument
1259 isc_sha384_final(isc_uint8_t digest[], isc_sha384_t *context) argument
1296 isc_sha224_end(isc_sha224_t *context, char buffer[]) argument
1327 isc_sha224_t context; local
1335 isc_sha256_end(isc_sha256_t *context, char buffer[]) argument
1366 isc_sha256_t context; local
1374 isc_sha512_end(isc_sha512_t *context, char buffer[]) argument
1405 isc_sha512_t context; local
1413 isc_sha384_end(isc_sha384_t *context, char buffer[]) argument
1444 isc_sha384_t context; local
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/digest/sha2/
H A Dsha2.c344 void SHA256_Init(SHA256_CTX* context) { argument
345 if (context == (SHA256_CTX*)0) {
348 MEMCPY_BCOPY(context->state, sha256_initial_hash_value, SHA256_DIGEST_LENGTH);
349 MEMSET_BZERO(context->buffer, SHA256_BLOCK_LENGTH);
350 context->bitcount = 0;
390 void SHA256_Transform(SHA256_CTX* context, const sha2_word32* data) { argument
395 W256 = (sha2_word32*)context->buffer;
398 a = context->state[0];
399 b = context->state[1];
400 c = context
448 SHA256_Transform(SHA256_CTX* context, const sha2_word32* data) argument
528 SHA256_Update(SHA256_CTX* context, const sha2_byte *data, size_t len) argument
577 SHA256_Final(sha2_byte digest[], SHA256_CTX* context) argument
640 SHA256_End(SHA256_CTX* context, char buffer[]) argument
663 SHA256_CTX context; local
672 SHA512_Init(SHA512_CTX* context) argument
717 SHA512_Transform(SHA512_CTX* context, const sha2_word64* data) argument
772 SHA512_Transform(SHA512_CTX* context, const sha2_word64* data) argument
850 SHA512_Update(SHA512_CTX* context, const sha2_byte *data, size_t len) argument
899 SHA512_Last(SHA512_CTX* context) argument
940 SHA512_Final(sha2_byte digest[], SHA512_CTX* context) argument
969 SHA512_End(SHA512_CTX* context, char buffer[]) argument
992 SHA512_CTX context; local
1001 SHA384_Init(SHA384_CTX* context) argument
1010 SHA384_Update(SHA384_CTX* context, const sha2_byte* data, size_t len) argument
1014 SHA384_Final(sha2_byte digest[], SHA384_CTX* context) argument
1043 SHA384_End(SHA384_CTX* context, char buffer[]) argument
1066 SHA384_CTX context; local
[all...]
/macosx-10.9.5/Heimdal-323.92.1/admin/
H A Dremove.c48 ret = krb5_parse_name(context, opt->principal_string, &principal);
50 krb5_warn(context, ret, "%s", opt->principal_string);
55 ret = krb5_string_to_enctype(context, opt->enctype_string, &enctype);
61 krb5_warn(context, ret, "%s", opt->enctype_string);
63 krb5_free_principal(context, principal);
69 krb5_warnx(context,
84 ret = krb5_kt_remove_entry(context, keytab, &entry);
85 krb5_kt_close(context, keytab);
87 krb5_warn(context, ret, "remove");
90 krb5_free_principal(context, principa
[all...]

Completed in 358 milliseconds

<<11121314151617181920>>