Home
last modified time | relevance | path

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

/AOO41X/main/sal/qa/rtl/cipher/
H A Drtl_cipher.cxx69 rtlCipher aCipher = rtl_cipher_create(rtl_Cipher_AlgorithmBF, rtl_Cipher_ModeECB); in create_001() local
70 CPPUNIT_ASSERT_MESSAGE("create failed.", aCipher != NULL); in create_001()
71 rtl_cipher_destroy(aCipher); in create_001()
75 rtlCipher aCipher = rtl_cipher_create(rtl_Cipher_AlgorithmInvalid, rtl_Cipher_ModeECB); in create_002() local
76 CPPUNIT_ASSERT_MESSAGE("create provide wrong object.", aCipher == NULL); in create_002()
80 rtlCipher aCipher = rtl_cipher_create(rtl_Cipher_AlgorithmBF, rtl_Cipher_ModeCBC); in create_003() local
81 CPPUNIT_ASSERT_MESSAGE("create failed.", aCipher != NULL); in create_003()
82 rtl_cipher_destroy(aCipher); in create_003()
86 rtlCipher aCipher = rtl_cipher_create(rtl_Cipher_AlgorithmInvalid, rtl_Cipher_ModeCBC); in create_004() local
87 CPPUNIT_ASSERT_MESSAGE("create provide wrong object.", aCipher == NULL); in create_004()
[all …]
/AOO41X/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 …]