Searched refs:outKey (Results 1 - 22 of 22) sorted by relevance

/macosx-10.10.1/mDNSResponder-561.1.1/mDNSWindows/
H A DSecret.h30 LsaGetSecret( const char * inDomain, char * outDomain, unsigned outDomainSize, char * outKey, unsigned outKeySize, char * outSecret, unsigned outSecretSize );
H A DSecret.c38 LsaGetSecret( const char * inDomain, char * outDomain, unsigned outDomainSize, char * outKey, unsigned outKeySize, char * outSecret, unsigned outSecretSize ) argument
52 check( outKey );
110 err = MakeUTF8StringFromLsaString( outKey, outKeySize, keyLSA );
112 require_action( outKey[0] == '$', exit, err = kUnknownErr );
113 memcpy( outKey, outKey + 1, strlen( outKey ) );
H A DmDNSWin32.c4762 char outKey[ 256 ]; local
4770 if ( LsaGetSecret( domainUTF8, outDomain, sizeof( outDomain ), outKey, sizeof( outKey ), outSecret, sizeof( outSecret ) ) )
4778 MakeDomainNameFromDNSNameString( &key, outKey );
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSWindows/ControlPanel/
H A DSharedSecret.cpp82 char outKey[ 256 ]; local
87 if ( LsaGetSecret( zoneUTF8, outDomain, sizeof( outDomain ) / sizeof( TCHAR ), outKey, sizeof( outKey ) / sizeof( TCHAR ), outSecret, sizeof( outSecret ) / sizeof( TCHAR ) ) )
89 m_key = outKey;
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_sd_cspdl/lib/
H A DSDCSPDLSession.h47 CssmKey &outKey, CSSM_DB_HANDLE inDBHandle,
H A DSDCSPDLSession.cpp48 CssmKey &outKey, CSSM_DB_HANDLE inDBHandle,
51 new SDKey(session, inKeyHandle, outKey, inDBHandle, inKeyAttr,
47 makeReferenceKey(SDCSPSession &session, KeyHandle inKeyHandle, CssmKey &outKey, CSSM_DB_HANDLE inDBHandle, uint32 inKeyAttr, const CssmData *inKeyLabel) argument
H A DSDCSPSession.h76 CssmKey &outKey, CSSM_DB_HANDLE inDBHandle,
H A DSDDLSession.cpp259 CssmKey *outKey = inoutData->interpretedAs<CssmKey>(); local
260 new SDKey(*this, *outKey, hKey, db, record, recordType, *inoutData);
/macosx-10.10.1/Security-57031.1.35/ntlm/
H A DntlmBlobPriv.c355 unsigned char *outKey) // 8 bytes
357 outKey[0] = inKey[0] & 0xfe;
358 outKey[1] = ((inKey[0] << 7) | (inKey[1] >> 1)) & 0xfe;
359 outKey[2] = ((inKey[1] << 6) | (inKey[2] >> 2)) & 0xfe;
360 outKey[3] = ((inKey[2] << 5) | (inKey[3] >> 3)) & 0xfe;
361 outKey[4] = ((inKey[3] << 4) | (inKey[4] >> 4)) & 0xfe;
362 outKey[5] = ((inKey[4] << 3) | (inKey[5] >> 5)) & 0xfe;
363 outKey[6] = ((inKey[5] << 2) | (inKey[6] >> 6)) & 0xfe;
364 outKey[7] = (inKey[6] << 1) & 0xfe;
353 ntlmMakeDesKey( const unsigned char *inKey, unsigned char *outKey) argument
H A DntlmBlobPriv.h253 unsigned char *outKey); // DES_KEY_SIZE bytes
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_cspdl/lib/
H A DSSCSPDLSession.h42 CssmKey &outKey, SSDatabase &inSSDatabase,
H A DSSCSPDLSession.cpp79 CssmKey &outKey, SSDatabase &inSSDatabase,
82 new SSKey(session, inKeyHandle, outKey, inSSDatabase, inKeyAttr,
78 makeReferenceKey(SSCSPSession &session, KeyHandle inKeyHandle, CssmKey &outKey, SSDatabase &inSSDatabase, uint32 inKeyAttr, const CssmData *inKeyLabel) argument
H A DSSDLSession.cpp346 CssmKey *outKey = DatabaseSession::alloc<CssmKey>(); local
347 new SSKey(*this, *outKey, db, uniqueId, pAttributes->DataRecordType, *inoutData);
353 inoutData->Length = sizeof(*outKey);
354 inoutData->Data = reinterpret_cast<uint8 *>(outKey);
407 CssmKey *outKey = DatabaseSession::alloc<CssmKey>(); local
408 new SSKey(*this, *outKey, db, uniqueId, pAttributes->DataRecordType, *inoutData);
414 inoutData->Length = sizeof(*outKey);
415 inoutData->Data = reinterpret_cast<uint8 *>(outKey);
469 CssmKey *outKey = DatabaseSession::alloc<CssmKey>(); local
470 new SSKey(*this, *outKey, d
[all...]
H A DSSCSPSession.h71 CssmKey &outKey, SSDatabase &inSSDatabase,
/macosx-10.10.1/Security-57031.1.35/SecurityTests/cspxutils/sshKey/
H A DsshKey.cpp668 unsigned char **outKey, // mallocd and RETURNED
754 *outKey = (unsigned char *)malloc(*outKeyLen);
755 memmove(*outKey, CFDataGetBytePtr(cfOut), *outKeyLen);
767 unsigned char **outKey, // mallocd and RETURNED
806 *outKey = (unsigned char *)malloc(*outKeyLen);
807 memmove(*outKey, CFDataGetBytePtr(cfOut), *outKeyLen);
1036 unsigned char **outKey, // mallocd and RETURNED
1085 *outKey = (unsigned char *)malloc(*outKeyLen);
1086 memmove(*outKey, CFDataGetBytePtr(cfOut), *outKeyLen);
1099 unsigned char **outKey, // malloc
664 encodeSSH1RSAPrivKey( RSA *rsa, const char *password, const char *comment, unsigned char **outKey, unsigned *outKeyLen) argument
764 encodeSSH1RSAPubKey( RSA *rsa, const char *comment, unsigned char **outKey, unsigned *outKeyLen) argument
1033 encodeSSH2RSAPubKey( RSA *rsa, const char *comment, unsigned char **outKey, unsigned *outKeyLen) argument
1096 encodeSSH2DSAPubKey( DSA *dsa, const char *comment, unsigned char **outKey, unsigned *outKeyLen) argument
1404 unsigned char *outKey = NULL; local
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/cspxutils/pubKeyTool/
H A DpubKeyTool.cpp39 CSSM_KEY &outKey)
41 memset(&outKey, 0, sizeof(CSSM_KEY));
42 outKey.KeyData = keyBlob;
43 CSSM_KEYHEADER &hdr = outKey.KeyHeader;
59 crtn = CSSM_QueryKeySizeInBits(cspHand, CSSM_INVALID_HANDLE, &outKey,
34 inferCssmKey( const CSSM_DATA &keyBlob, bool isPrivKey, CSSM_KEYBLOB_FORMAT keyForm, CSSM_CSP_HANDLE cspHand, CSSM_KEY &outKey) argument
/macosx-10.10.1/MITKerberosShim-66/
H A DKrb4DeprecatedAPIs.c891 OSStatus KClientGetSessionKey (KClientSession inSession, KClientKey *outKey) argument
926 OSStatus KClientGetServiceKey (KClientSession inSession, UInt32 inVersion, KClientKey *outKey) argument
1004 OSStatus KClientPasswordToKey (KClientSession inSession, const char *inPassword, KClientKey *outKey) argument
/macosx-10.10.1/Security-57031.1.35/Security/include/security_smime/
H A Dcmspubkey.c1239 SecSymmetricKeyRef outKey = NULL; local
1430 rv = SecKeyCreateWithCSSMKey(&unwrappedKey, &outKey);
1442 if(outKey == NULL) {
1445 return outKey;
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_smime/lib/
H A Dcmspubkey.c1239 SecSymmetricKeyRef outKey = NULL; local
1430 rv = SecKeyCreateWithCSSMKey(&unwrappedKey, &outKey);
1442 if(outKey == NULL) {
1445 return outKey;
/macosx-10.10.1/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFireWireUserClient.h501 int * outKey ) const ;
505 UInt32 * outKey) const ;
H A DIOFireWireUserClient.cpp938 int outKey; local
941 &outKey);
942 arguments->scalarOutput[0] = outKey;
949 UInt32 outKey; local
952 &outKey);
953 arguments->scalarOutput[0] = outKey;
3013 int * outKey ) const
3028 IOReturn error = dir->getIndexKey(index, *outKey) ;
3039 UInt32* outKey ) const
3054 IOReturn error = dir->getIndexValue(index, *outKey) ;
[all...]
/macosx-10.10.1/IOFireWireFamily-456/IOFireWireLib.CFPlugInProj/
H A DIOFireWireLibConfigDirectory.cpp650 int * outKey)
652 return IOFireWireIUnknown::InterfaceMap<ConfigDirectoryCOM>::GetThis(inDir)->GetIndexKey(inIndex, *outKey) ;
647 SGetIndexKey( IOFireWireLibConfigDirectoryRef inDir, int inIndex, int * outKey) argument

Completed in 312 milliseconds