Remove unnecessary NativeCrypto "OpenSSL error" warning

The following errors were noticed running tests.AllTests:

    D/NativeCrypto(  507): OpenSSL error 168235011: error:0A071003:dsa routines:DSA_do_verify:BN lib
    D/NativeCrypto(  507): OpenSSL error 168235011: error:0A071003:dsa routines:DSA_do_verify:BN lib
    D/NativeCrypto(  507): OpenSSL error 168235011: error:0A071003:dsa routines:DSA_do_verify:BN lib
    D/NativeCrypto(  507): OpenSSL error 168235011: error:0A071003:dsa routines:DSA_do_verify:BN lib
    D/NativeCrypto(  507): OpenSSL error 168235011: error:0A071003:dsa routines:DSA_do_verify:BN lib

    D/NativeCrypto(  507): OpenSSL error 168235011: error:0A071003:dsa routines:DSA_do_verify:BN lib
    D/NativeCrypto(  507): OpenSSL error 168235011: error:0A071003:dsa routines:DSA_do_verify:BN lib

I tracked these down to the following tests respectively:

    org.apache.harmony.archive.tests.java.util.jar.JarFileTest.test_JarFile_Modified_SF_EntryAttributes
    org.apache.harmony.archive.tests.java.util.jar.JarFileTest.test_JarFile_Modified_SF_EntryAttributes
    org.apache.harmony.archive.tests.java.util.jar.JarFileTest.test_JarFile_Modified_SF_EntryAttributes
    org.apache.harmony.archive.tests.java.util.jar.JarFileTest.test_JarFile_Modified_SF_EntryAttributes
    org.apache.harmony.archive.tests.java.util.jar.JarFileTest.test_JarFile_Modified_SF_EntryAttributes

    org.apache.harmony.archive.tests.java.util.jar.JarInputStreamTest.test_JarInputStream_Modified_SF_EntryAttributes_getNextEntry
    org.apache.harmony.archive.tests.java.util.jar.JarInputStreamTest.test_JarInputStream_Modified_SF_EntryAttributes_read

However, these errors are just because of expected SecurityException
because jar files are being modified and the signatures are no longer
valid.

Commented out the warning, leaving it for future debugging if
needed. In addition passed context in for use in message for
disambiguating source of error.

	libcore/luni/src/main/native/org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp

Change-Id: I3e41994a30c19a859a1eaed4ef80eb25b9670f52
1 file changed