Home
last modified time | relevance | path

Searched refs:cipher (Results 1 – 7 of 7) sorted by relevance

/AOO41X/main/sal/workben/
H A Dt_cipher.c217 rtlCipher cipher; in main() local
220 cipher = rtl_cipher_create (rtl_Cipher_AlgorithmBF, rtl_Cipher_ModeECB); in main()
221 OSL_ASSERT(cipher != 0); in main()
222 if (cipher != 0) in main()
229 cipher, rtl_Cipher_DirectionBoth, in main()
235 cipher, cbc_data, length, ecb_out, sizeof(ecb_out)); in main()
241 cipher, ecb_out, length, ecb_in, sizeof(ecb_in)); in main()
245 rtl_cipher_destroy (cipher); in main()
249 cipher = rtl_cipher_create (rtl_Cipher_AlgorithmBF, rtl_Cipher_ModeCBC); in main()
250 OSL_ASSERT(cipher != 0); in main()
[all …]
/AOO41X/main/libxmlsec/
H A Dxmlsec1-nssmangleciphers.patch28 - * Internal Nss Block cipher CTX
30 + * This context is designed for repositing a block cipher for transform
39 CK_MECHANISM_TYPE cipher;
106 + context->cipher = CKM_DES3_CBC ;
113 + context->cipher = CKM_AES_CBC ;
117 + context->cipher = CKM_AES_CBC ;
121 + context->cipher = CKM_AES_CBC ;
215 + context->cipher = CKM_INVALID_MECHANISM ;
347 - xmlSecAssert2(ctx->cipher != 0, -1);
348 + xmlSecAssert2( ctx->cipher != CKM_INVALID_MECHANISM , -1 ) ;
[all …]
H A Dxmlsec1-customkeymanage.patch2174 + CK_MECHANISM_TYPE cipher ;
2251 + context->cipher = CKM_DES3_CBC ;
2258 + /* context->cipher = CKM_NETSCAPE_AES_KEY_WRAP ;*/
2259 + context->cipher = CKM_AES_CBC ;
2263 + /* context->cipher = CKM_NETSCAPE_AES_KEY_WRAP ;*/
2264 + context->cipher = CKM_AES_CBC ;
2268 + /* context->cipher = CKM_NETSCAPE_AES_KEY_WRAP ;*/
2269 + context->cipher = CKM_AES_CBC ;
2398 + xmlSecAssert2( ctx->cipher != CKM_INVALID_MECHANISM , -1 ) ;
2410 + if( ( blockSize = PK11_GetBlockSize( ctx->cipher , NULL ) ) < 0 ) {
[all …]
/AOO41X/main/offapi/com/sun/star/xml/crypto/
H A DXCipherContext.idl43 /** This interface allows to encrypt/decrypt data using the cipher context.
54 /** encrypts/decrypts the data using the cipher.
56 Please have in mind, the cipher object state might depend from the
74 /** finalizes cipher and disposes context.
H A DXCipherContextSupplier.idl68 whether an encryption or decryption cipher should be created
73 optional parameters that could be used to initialize the cipher,
H A DCipherID.idl32 /** The constant set contains identifiers of supported cipher-creation
/AOO41X/main/sal/rtl/source/
H A Dmakefile.mk73 $(SLO)$/cipher.obj \
107 $(OBJ)$/cipher.obj \