Lines Matching refs:Cipher

82 	rtlCipher          Cipher,
88 rtlCipher Cipher,
92 typedef void (SAL_CALL cipher_delete_t) (rtlCipher Cipher);
120 rtlCipher Cipher = (rtlCipher)NULL; in rtl_cipher_create() local
124 Cipher = rtl_cipher_createBF (Mode); in rtl_cipher_create()
128 Cipher = rtl_cipher_createARCFOUR (Mode); in rtl_cipher_create()
134 return Cipher; in rtl_cipher_create()
141 rtlCipher Cipher, in rtl_cipher_init() argument
146 Cipher_Impl *pImpl = (Cipher_Impl*)Cipher; in rtl_cipher_init()
153 Cipher, Direction, pKeyData, nKeyLen, pArgData, nArgLen); in rtl_cipher_init()
160 rtlCipher Cipher, in rtl_cipher_encode() argument
164 Cipher_Impl *pImpl = (Cipher_Impl*)Cipher; in rtl_cipher_encode()
170 return (pImpl->m_encode)(Cipher, pData, nDatLen, pBuffer, nBufLen); in rtl_cipher_encode()
177 rtlCipher Cipher, in rtl_cipher_decode() argument
181 Cipher_Impl *pImpl = (Cipher_Impl*)Cipher; in rtl_cipher_decode()
187 return (pImpl->m_decode)(Cipher, pData, nDatLen, pBuffer, nBufLen); in rtl_cipher_decode()
193 void SAL_CALL rtl_cipher_destroy (rtlCipher Cipher) in rtl_cipher_destroy() argument
195 Cipher_Impl *pImpl = (Cipher_Impl*)Cipher; in rtl_cipher_destroy()
197 pImpl->m_delete (Cipher); in rtl_cipher_destroy()
1042 rtlCipher Cipher, in rtl_cipher_initBF() argument
1047 CipherBF_Impl *pImpl = (CipherBF_Impl*)Cipher; in rtl_cipher_initBF()
1069 rtlCipher Cipher, in rtl_cipher_encodeBF() argument
1073 CipherBF_Impl *pImpl = (CipherBF_Impl*)Cipher; in rtl_cipher_encodeBF()
1095 rtlCipher Cipher, in rtl_cipher_decodeBF() argument
1099 CipherBF_Impl *pImpl = (CipherBF_Impl*)Cipher; in rtl_cipher_decodeBF()
1120 void SAL_CALL rtl_cipher_destroyBF (rtlCipher Cipher) in rtl_cipher_destroyBF() argument
1122 CipherBF_Impl *pImpl = (CipherBF_Impl*)Cipher; in rtl_cipher_destroyBF()
1277 rtlCipher Cipher, in rtl_cipher_initARCFOUR() argument
1282 CipherARCFOUR_Impl *pImpl = (CipherARCFOUR_Impl*)Cipher; in rtl_cipher_initARCFOUR()
1304 rtlCipher Cipher, in rtl_cipher_encodeARCFOUR() argument
1308 CipherARCFOUR_Impl *pImpl = (CipherARCFOUR_Impl*)Cipher; in rtl_cipher_encodeARCFOUR()
1327 rtlCipher Cipher, in rtl_cipher_decodeARCFOUR() argument
1331 CipherARCFOUR_Impl *pImpl = (CipherARCFOUR_Impl*)Cipher; in rtl_cipher_decodeARCFOUR()
1349 void SAL_CALL rtl_cipher_destroyARCFOUR (rtlCipher Cipher) in rtl_cipher_destroyARCFOUR() argument
1351 CipherARCFOUR_Impl *pImpl = (CipherARCFOUR_Impl*)Cipher; in rtl_cipher_destroyARCFOUR()