Home
last modified time | relevance | path

Searched refs:aCipher (Results 1 – 3 of 3) sorted by relevance

/trunk/main/sal/qa/rtl/cipher/
H A Drtl_cipher.cxx70 rtlCipher aCipher = rtl_cipher_create(rtl_Cipher_AlgorithmBF, rtl_Cipher_ModeECB); in TEST_F() local
71 ASSERT_TRUE(aCipher != NULL) << "create failed."; in TEST_F()
72 rtl_cipher_destroy(aCipher); in TEST_F()
76 rtlCipher aCipher = rtl_cipher_create(rtl_Cipher_AlgorithmInvalid, rtl_Cipher_ModeECB); in TEST_F() local
77 ASSERT_TRUE(aCipher == NULL) << "create provide wrong object."; in TEST_F()
81 rtlCipher aCipher = rtl_cipher_create(rtl_Cipher_AlgorithmBF, rtl_Cipher_ModeCBC); in TEST_F() local
82 ASSERT_TRUE(aCipher != NULL) << "create failed."; in TEST_F()
83 rtl_cipher_destroy(aCipher); in TEST_F()
87 rtlCipher aCipher = rtl_cipher_create(rtl_Cipher_AlgorithmInvalid, rtl_Cipher_ModeCBC); in TEST_F() local
88 ASSERT_TRUE(aCipher == NULL) << "create provide wrong object."; in TEST_F()
[all …]
/trunk/main/vcl/source/gdi/
H A Dpdfwriter_impl2.cxx1415 rtlCipher aCipher = rtl_cipher_createARCFOUR( rtl_Cipher_ModeStream ); in computeODictionaryValue() local
1416 if( aDigest && aCipher) in computeODictionaryValue()
1445 rtl_cipher_initARCFOUR( aCipher, rtl_Cipher_DirectionEncode, in computeODictionaryValue()
1448 …rtl_cipher_encodeARCFOUR( aCipher, i_pPaddedUserPassword, ENCRYPTED_PWD_SIZE, // the data to be en… in computeODictionaryValue()
1461 rtl_cipher_initARCFOUR( aCipher, rtl_Cipher_DirectionEncode, in computeODictionaryValue()
1463 …rtl_cipher_encodeARCFOUR( aCipher, &io_rOValue[0], sal_Int32(io_rOValue.size()), // the data to be… in computeODictionaryValue()
1477 if( aCipher ) in computeODictionaryValue()
1478 rtl_cipher_destroyARCFOUR( aCipher ); in computeODictionaryValue()
1499 rtlCipher aCipher = rtl_cipher_createARCFOUR( rtl_Cipher_ModeStream ); in computeUDictionaryValue() local
1500 if( aDigest && aCipher ) in computeUDictionaryValue()
[all …]
/trunk/main/oox/inc/oox/helper/
H A Dopenssl_wrapper.hxx120 …void initialize( const EVP_CIPHER *aCipher, const unsigned char *key, const unsigned char *iv, int… in initialize() argument
122 if( 1 != EVP_CipherInit_ex( cipher_ctx, aCipher, NULL, key, iv, enc ) ) in initialize()
124 cipher = aCipher; in initialize()