Searched refs:session (Results 126 - 150 of 543) sorted by relevance

1234567891011>>

/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_sd_cspdl/lib/
H A DSDCSPDLSession.h45 void makeReferenceKey(SDCSPSession &session,
H A DSDContext.h38 // only thing we add is a reference to our creator's session.
46 SDContext(SDCSPSession &session);
76 SDSignatureContext(SDCSPSession &session);
109 SDRandomContext(SDCSPSession &session);
122 SDCryptContext(SDCSPSession &session);
141 SDDigestContext(SDCSPSession &session);
156 SDMACContext(SDCSPSession &session);
/macosx-10.10.1/DiskArbitration-268/DiskArbitration/
H A DDADisk.h94 * @param session The DASession in which to contact Disk Arbitration.
103 extern DADiskRef DADiskCreateFromBSDName( CFAllocatorRef allocator, DASessionRef session, const char * name );
109 * @param session The DASession in which to contact Disk Arbitration.
118 extern DADiskRef DADiskCreateFromIOMedia( CFAllocatorRef allocator, DASessionRef session, io_service_t media );
124 * @param session The DASession in which to contact Disk Arbitration.
133 extern DADiskRef DADiskCreateFromVolumePath( CFAllocatorRef allocator, DASessionRef session, CFURLRef path );
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/lib/
H A Dalgmaker.cpp97 Ctx *make(AppleCSPSession &session, const Context &context) const argument
98 { return new Ctx(session, context); }
106 Ctx *make(AppleCSPSession &session, const Context &context) const argument
107 { return new Ctx(session, context, arg); }
115 Ctx *make(AppleCSPSession &session, const Context &context) const argument
116 { return new Ctx(session, context, arg1, arg2); }
125 Ctx *make(AppleCSPSession &session, const Context &context) const argument
126 { return new Ctx(session, context, arg1, arg2, arg3); }
300 AppleCSPSession &session,
304 return BSafe::setup(session, cspCt
299 setup( AppleCSPSession &session, CSPFullPluginSession::CSPContext * &cspCtx, const Context &context) argument
311 setup( AppleCSPSession &session, CSPFullPluginSession::CSPContext * &cspCtx, const Context &context) argument
[all...]
H A DDH_keys.cpp69 AppleCSPSession &session,
175 session(),
302 AppleCSPSession &session) :
303 CSPKeyInfoProvider(cssmKey, session)
309 AppleCSPSession &session)
325 return new DHKeyInfoProvider(cssmKey, session);
449 CssmAutoData aDerData(session());
459 CSSM_DATA_PTR derData = (CSSM_DATA_PTR)session().malloc(sizeof(CSSM_DATA));
464 mGenAttrs = (Context::Attr *)session().malloc(sizeof(Context::Attr));
470 copyCssmData(CssmData::overlay(*derData), params, session());
65 generateKeyBlob( Allocator &allocator, CssmData &blob, CSSM_KEYBLOB_FORMAT &format, AppleCSPSession &session, const CssmKey *paramKey, CSSM_KEYATTR_FLAGS &attrFlags) argument
300 DHKeyInfoProvider( const CssmKey &cssmKey, AppleCSPSession &session) argument
307 provider( const CssmKey &cssmKey, AppleCSPSession &session) argument
[all...]
H A DdesContext.cpp33 DESContext::DESContext(AppleCSPSession &session) : BlockCryptor(session), DesInst(NULL) argument
58 symmetricKeyBits(context, session(), CSSM_ALGID_DES,
119 DES3Context::DES3Context(AppleCSPSession &session) : BlockCryptor(session), DesInst(NULL) argument
146 symmetricKeyBits(context, session(), CSSM_ALGID_3DES_3KEY_EDE,
H A DcastContext.cpp27 CastContext::CastContext(AppleCSPSession &session) : argument
28 BlockCryptor(session),
68 symmetricKeyBits(context, session(), CSSM_ALGID_CAST,
H A DgladmanContext.cpp30 GAESContext::GAESContext(AppleCSPSession &session) : argument
31 BlockCryptor(session),
77 symmetricKeyBits(context, session(), CSSM_ALGID_AES,
/macosx-10.10.1/ppp-786.1.1/Helpers/pppd/
H A Dsys-MacOSX.c219 SCDynamicStoreRef cfgCache = 0; /* configd session */
270 ppp_session_t *session = NULL; variable
300 static ne_session_t session = NULL; local
309 session = ne_session_create(service_id, NESessionTypeVPN);
314 return session;
322 ne_session_t session = ne_get_session(); local
325 success = (session != NULL &&
326 ne_session_copy_security_session_info(session, &bootstrap_port, &audit_session_port) &&
345 ne_session_t session = ne_get_session(); local
346 if (session !
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/heimcred/
H A Dserver.m79 uid_t session;
118 struct HeimSession *session = (struct HeimSession *)value;
120 CFDictionaryApplyFunction(session->items, FlattenCredential, cf);
121 [sf setObject:cf forKey:[NSNumber numberWithInt:(int)session->session]];
244 struct HeimSession *session = HeimCredCopySession(sessionID);
245 if (session == NULL)
251 CFRelease(session);
263 CFDictionarySetValue(session->items, cred->uuid, cred);
265 handleDefaultCredentialUpdate(session, cre
[all...]
/macosx-10.10.1/curl-83.1.2/curl/lib/vtls/
H A Dgtls.c112 * session-specific error variable, and when not set also its own global
115 * Windows builds these callbacks should ideally set the session-specific
257 gnutls_session_t session = conn->ssl[sockindex].session; local
302 rc = gnutls_handshake(session);
306 gnutls_record_get_direction(session)?
316 int alert = gnutls_alert_get(session);
329 int alert = gnutls_alert_get(session);
362 gnutls_session_t session; local
482 /* Initialize TLS session a
699 gnutls_session_t session = conn->ssl[sockindex].session; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/sec/securityd/
H A DSecOTRRemote.c80 SecOTRSessionRef session = SecOTRSessionCreateFromData(kCFAllocatorDefault, sessionData); local
85 SecOTRSProcessPacket(session, inputPacket, negotiationResponse);
87 SecOTRSAppendStartPacket(session, negotiationResponse);
92 SecOTRSAppendSerialization(session, outputSession);
97 *readyForMessages = SecOTRSGetIsReadyForMessages(session);
/macosx-10.10.1/postfix-255/postfix/src/smtp/
H A Dsmtp_rcpt.c85 /* that the SMTP client would give up after one SMTP session,
134 SMTP_SESSION *session = state->session; local
144 if (session->features & SMTP_FEATURE_DSN)
155 if ((session->features & SMTP_FEATURE_DSN) == 0
171 session->namaddrport, DSN_FROM_DSN_BUF(why));
H A Dsmtp_connect.c15 /* smtp_connect() attempts to establish an SMTP/LMTP session with a host
20 /* an alternate server when an SMTP/LMTP session fails to deliver.
365 /* smtp_cleanup_session - clean up after using a session */
370 SMTP_SESSION *session = state->session; local
381 if (session->history != 0
382 && (session->error_mask & name_mask(VAR_NOTIFY_CLASSES,
386 smtp_chat_notify(session);
389 * When session caching is enabled, cache the first good session fo
472 SMTP_SESSION *session; local
644 SMTP_SESSION *session; local
815 SMTP_SESSION *session; local
[all...]
H A Dsmtp.h44 * passwords, TLS policy, cached SMTP connections, and cached TLS session
147 struct SMTP_SESSION *session; /* network connection */ member in struct:SMTP_STATE
169 VSTRING *endp_label; /* cached session physical endpoint */
175 * session all recipients should be marked one way or the other.
323 time_t expire_time; /* session reuse expiration time */
339 TLS_SESS_STATE *tls_context; /* TLS library session state */
376 * A connection is re-usable if session->expire_time is > 0 and the
419 (!THIS_SESSION_IS_DEAD && session->expire_time > 0)
423 && (session->expire_time < vstream_ftime(session
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/hx509/
H A Dks_p11.c54 CK_SESSION_HANDLE session; member in struct:p11_slot
135 CK_SESSION_HANDLE session; local
148 ret = p11_get_session(NULL, p11rsa->p, p11rsa->slot, NULL, &session);
152 ret = P11FUNC(p11rsa->p, SignInit, (session, &mechanism, key));
154 p11_put_session(p11rsa->p, p11rsa->slot, session);
159 (session, (CK_BYTE *)(intptr_t)from, flen, to, &ck_sigsize));
160 p11_put_session(p11rsa->p, p11rsa->slot, session);
173 CK_SESSION_HANDLE session; local
186 ret = p11_get_session(NULL, p11rsa->p, p11rsa->slot, NULL, &session);
190 ret = P11FUNC(p11rsa->p, DecryptInit, (session,
311 CK_SESSION_HANDLE session; local
481 p11_put_session(struct p11_module *p, struct p11_slot *slot, CK_SESSION_HANDLE session) argument
493 iterate_entries(hx509_context context, struct p11_module *p, struct p11_slot *slot, CK_SESSION_HANDLE session, CK_ATTRIBUTE *search_data, int num_search_data, CK_ATTRIBUTE *query, int num_query, int (*func)(hx509_context, struct p11_module *, struct p11_slot *, CK_SESSION_HANDLE session, CK_OBJECT_HANDLE object, void *, CK_ATTRIBUTE *, int), void *ptr) argument
569 getattr_bn(struct p11_module *p, struct p11_slot *slot, CK_SESSION_HANDLE session, CK_OBJECT_HANDLE object, unsigned int type) argument
610 collect_private_key(hx509_context context, struct p11_module *p, struct p11_slot *slot, CK_SESSION_HANDLE session, CK_OBJECT_HANDLE object, void *ptr, CK_ATTRIBUTE *query, int num_query) argument
679 collect_cert(hx509_context context, struct p11_module *p, struct p11_slot *slot, CK_SESSION_HANDLE session, CK_OBJECT_HANDLE object, void *ptr, CK_ATTRIBUTE *query, int num_query) argument
735 p11_list_keys(hx509_context context, struct p11_module *p, struct p11_slot *slot, CK_SESSION_HANDLE session, hx509_lock lock, hx509_certs *certs) argument
[all...]
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dssh-pkcs11.c45 CK_SESSION_HANDLE session; member in struct:pkcs11_slotinfo
100 if (p->slotinfo[i].session &&
102 p->slotinfo[i].session)) != CKR_OK)
196 CK_SESSION_HANDLE session; local
202 session = p->slotinfo[slotidx].session;
203 if ((rv = f->C_FindObjectsInit(session, attr, nattr)) != CKR_OK) {
207 if ((rv = f->C_FindObjects(session, obj, 1, &nfound)) != CKR_OK ||
213 if ((rv = f->C_FindObjectsFinal(session)) != CKR_OK)
267 if ((rv = f->C_Login(si->session, CKU_USE
354 CK_SESSION_HANDLE session; local
398 CK_SESSION_HANDLE session; local
[all...]
/macosx-10.10.1/IOKitUser-1050.1.21/ioserviceauthorized/
H A Dopen.m35 static DASessionRef session;
39 session = DASessionCreate( kCFAllocatorDefault );
41 if ( session )
43 DASessionSetDispatchQueue( session, dispatch_get_main_queue( ) );
47 return session;
/macosx-10.10.1/Heimdal-398.1.2/lib/ntlm/
H A Dheimntlm-protos.h12 * Generates an NTLMv1 session random with assosited session master key.
16 * @param session generated session nonce, should be freed with heim_ntlm_free_buf().
17 * @param master calculated session master key, should be freed with heim_ntlm_free_buf().
29 struct ntlm_buf *session,
33 * Generates an NTLMv2 session random with associated session master key.
38 * @param session generated session nonc
[all...]
/macosx-10.10.1/IOCDStorageFamily-51/
H A DIOCDPartitionScheme.cpp156 UInt32 session:8; member in struct:CDTrack
209 // Allocate a list large enough to hold information about each session.
236 descriptor->session <= kCDSessionMaxIndex )
244 track->session = descriptor->session;
265 descriptor->session <= kCDSessionMaxIndex )
267 CDSession * session = sessions + descriptor->session; local
269 // Record whether the session has "form 1" or "form 2" tracks.
271 session
280 CDSession * session = sessions + descriptor->session; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_cspdl/lib/
H A DSSContext.h32 // only thing we add is a reference to our creator's session.
40 SSContext(SSCSPSession &session);
70 SSSignatureContext(SSCSPSession &session);
103 SSRandomContext(SSCSPSession &session);
116 SSCryptContext(SSCSPSession &session);
135 SSDigestContext(SSCSPSession &session);
150 SSMACContext(SSCSPSession &session);
/macosx-10.10.1/CPANInternal-159.1/IO-SessionData-1.03/lib/IO/
H A DSessionSet.pm48 # Add a handle to the session set. Will automatically
53 warn "Adding a new session for $handle.\n" if $DEBUG;
59 # Remove a session from the session set. May pass either a handle or
66 warn "Deleting session $sess handle $handle.\n" if $DEBUG;
93 # Called with parameters ($session,'read'|'write' [,$activate])
96 # May use either a session object or a handle as first argument.
100 croak 'Usage $obj->activate($session,"read"|"write" [,$activate])'
132 my $session = $self->to_session($_);
133 warn "Writing pending data (",$session
[all...]
/macosx-10.10.1/Heimdal-398.1.2/kcm/
H A Dkcm_locl.h71 pid_t session; /* really au_asid_t */ member in struct:kcm_default_cache
91 pid_t session; /* really au_asid_t */ member in struct:kcm_ccache_data
124 pid_t session; member in struct:kcm_client
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/
H A Darparse.y68 { prompt(); } session
71 session: label
72 session command_line
/macosx-10.10.1/Heimdal-398.1.2/appl/telnet/libtelnet/
H A Dencrypt.h86 void (*session) (Session_Key *, int); member in struct:__anon499

Completed in 316 milliseconds

1234567891011>>