Lines Matching refs:hashAlgorithm

331     OUString hashAlgorithm;  member
349 OUString hashAlgorithm; member
537 keyData.hashAlgorithm = attribs.getString( XML_hashAlgorithm, OUString() ); in parseKeyData()
565 passwordKeyEncryptor.hashAlgorithm = attribs.getString( XML_hashAlgorithm, OUString() ); in parseEncryptedKey()
614 static const EVP_MD* toOpenSSLDigestAlgorithm( const OUString& hashAlgorithm ) throw ( Exception ) in toOpenSSLDigestAlgorithm() argument
616 if( hashAlgorithm.equalsAscii( "SHA-1" ) ) in toOpenSSLDigestAlgorithm()
618 …else if( hashAlgorithm.equalsAscii( "SHA1" ) ) // Typical Microsoft. The specification says "SHA-1… in toOpenSSLDigestAlgorithm()
620 else if( hashAlgorithm.equalsAscii( "SHA256" ) ) in toOpenSSLDigestAlgorithm()
622 else if( hashAlgorithm.equalsAscii( "SHA384" ) ) in toOpenSSLDigestAlgorithm()
624 else if( hashAlgorithm.equalsAscii( "SHA512" ) ) in toOpenSSLDigestAlgorithm()
626 else if( hashAlgorithm.equalsAscii( "MD5" ) ) in toOpenSSLDigestAlgorithm()
628 else if( hashAlgorithm.equalsAscii( "MD4" ) ) in toOpenSSLDigestAlgorithm()
631 else if( hashAlgorithm.equalsAscii( "MD2" ) ) in toOpenSSLDigestAlgorithm()
634 else if( hashAlgorithm.equalsAscii( "RIPEMD-160" ) ) in toOpenSSLDigestAlgorithm()
636 else if( hashAlgorithm.equalsAscii( "WHIRLPOOL" ) ) in toOpenSSLDigestAlgorithm()
639 ::rtl::OString str = ::rtl::OUStringToOString( hashAlgorithm, RTL_TEXTENCODING_UTF8 ); in toOpenSSLDigestAlgorithm()
840 const EVP_MD *digestAlgorithm = toOpenSSLDigestAlgorithm( passwordKeyEncryptor.hashAlgorithm ); in verifyPassword()
849 const EVP_MD *verifierDigestAlgorithm = toOpenSSLDigestAlgorithm( keyData.hashAlgorithm ); in verifyPassword()
877 const EVP_MD* keyDataDigestAlgorithm = toOpenSSLDigestAlgorithm( keyData.hashAlgorithm ); in verifyPassword()
914 const EVP_MD* digestAlgorithm = toOpenSSLDigestAlgorithm( keyData.hashAlgorithm ); in decryptStream()