Searched refs:DesInst (Results 1 - 2 of 2) sorted by relevance

/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/lib/
H A DdesContext.cpp34 DESContext::DESContext(AppleCSPSession &session) : BlockCryptor(session), DesInst(NULL)
40 if (DesInst != NULL) {
41 CCCryptorRelease(DesInst);
44 DesInst = NULL;
66 if (DesInst != NULL)
68 CCCryptorRelease(DesInst);
71 (void) CCCryptorCreateWithMode(0, kCCModeECB, kCCAlgorithmDES, ccDefaultPadding, NULL, keyData, kCCKeySizeDES, NULL, 0, 0, 0, &DesInst);
94 (void) CCCryptorEncryptDataBlock(DesInst, NULL, plainText, DES_BLOCK_SIZE_BYTES, cipherText);
112 (void) CCCryptorDecryptDataBlock(DesInst, NULL, cipherText, DES_BLOCK_SIZE_BYTES, plainText);
120 DES3Context::DES3Context(AppleCSPSession &session) : BlockCryptor(session), DesInst(NUL
[all...]
H A DdesContext.h61 CCCryptorRef DesInst; member in class:DESContext
92 CCCryptorRef DesInst; member in class:DES3Context

Completed in 303 milliseconds