You are viewing a plain text version of this content. The canonical link for it is here.
Posted to httpclient-users@hc.apache.org by "Jacky.Lam" <ja...@bbpos.com> on 2017/04/03 03:12:49 UTC

TLSv1.2 with cipher SHA256/384

Hi all,

I am absolutely dummy on SSL stuff. Please forgive me if I am confused with some basic concept.

Currently, I am developing an Android application using the legacy apache library to connect a HTTPS server which only accept TLSv1.2 and the cipher on this list (http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-security-policy-table.html)

I find my app working well on Android 5.0+, but not the one with 4.4.2. After searching the web, I know I need to explicitly enable TLSv1.2. But I find the cipher returned only contains those ended with SHA, but not SHA256/384 that TLSv1.2 required.

I tried to update the apache library to 4.4.1.1 (maintained by Marek Sebera). But I find the cipher is still the same.

Is this a OS problem? Can httpclient library override that?

Any suggestion or comment are welcomed. Thanks a lot.

BR,
Jacky
[http://www.bbpos.com/images/marketing/signature_banner.jpg]<http://bbpos.com>

RE: TLSv1.2 with cipher SHA256/384

Posted by "Jacky.Lam" <ja...@bbpos.com>.
Hi Bernd,

Thanks. I try to list out all the provider I am having with the following code:

           Provider[] providers = Security.getProviders();
            for (Provider provider : providers) {
                pLog.i(Defines.LogTag.Test,"provider: "+provider.getName());
                Set<Provider.Service> services = provider.getServices();
                for (Provider.Service service : services) {
                    pLog.i(Defines.LogTag.Test,"  algorithm: "+service.getAlgorithm());
                }
            }

And I got the following list. It looks like I already have the AndroidOpenSSL as well as a BC provider. Is BC means BouncyCastle? It seems both of them already support TLSv1.2 and at least some SHA256. Why the supported cipher list still doesn't show any cipher with SHA256?

Sorry if it is not a topic discussed in this list. Please kindly point me to somewhere else if appropriate. Thanks.

04-03 03:36:34.817 D/LogEng: Test: provider: AndroidOpenSSL
04-03 03:36:34.821 D/LogEng: Test:   algorithm: SSL
04-03 03:36:34.825 D/LogEng: Test:   algorithm: SSLv3
04-03 03:36:34.827 D/LogEng: Test:   algorithm: TLS
04-03 03:36:34.833 D/LogEng: Test:   algorithm: TLSv1
04-03 03:36:34.837 D/LogEng: Test:   algorithm: TLSv1.1
04-03 03:36:34.838 D/LogEng: Test:   algorithm: TLSv1.2
04-03 03:36:34.840 D/LogEng: Test:   algorithm: Default
04-03 03:36:34.841 D/LogEng: Test:   algorithm: SHA-1
04-03 03:36:34.847 D/LogEng: Test:   algorithm: SHA-256
04-03 03:36:34.849 D/LogEng: Test:   algorithm: SHA-384
04-03 03:36:34.851 D/LogEng: Test:   algorithm: SHA-512
04-03 03:36:34.900 D/LogEng: Test:   algorithm: MD5
04-03 03:36:34.901 D/LogEng: Test:   algorithm: RSA
04-03 03:36:34.906 D/LogEng: Test:   algorithm: DSA
04-03 03:36:34.911 D/LogEng: Test:   algorithm: EC
04-03 03:36:34.925 D/LogEng: Test:   algorithm: RSA
04-03 03:36:34.927 D/LogEng: Test:   algorithm: DSA
04-03 03:36:34.939 D/LogEng: Test:   algorithm: EC
04-03 03:36:34.948 D/LogEng: Test:   algorithm: ECDH
04-03 03:36:34.955 D/LogEng: Test:   algorithm: MD5WithRSA
04-03 03:36:34.965 D/LogEng: Test:   algorithm: SHA1WithRSA
04-03 03:36:34.970 D/LogEng: Test:   algorithm: SHA256WithRSA
04-03 03:36:34.990 D/LogEng: Test:   algorithm: SHA384WithRSA
04-03 03:36:34.994 D/LogEng: Test:   algorithm: SHA512WithRSA
04-03 03:36:35.007 D/LogEng: Test:   algorithm: SHA1withDSA
04-03 03:36:35.010 D/LogEng: Test:   algorithm: NONEwithRSA
04-03 03:36:35.014 D/LogEng: Test:   algorithm: ECDSA
04-03 03:36:35.016 D/LogEng: Test:   algorithm: SHA256withECDSA
04-03 03:36:35.021 D/LogEng: Test:   algorithm: SHA384withECDSA
04-03 03:36:35.029 D/LogEng: Test:   algorithm: SHA512withECDSA
04-03 03:36:35.042 D/LogEng: Test:   algorithm: SHA1PRNG
04-03 03:36:35.052 D/LogEng: Test:   algorithm: RSA/ECB/NoPadding
04-03 03:36:35.065 D/LogEng: Test:   algorithm: RSA/ECB/PKCS1Padding
04-03 03:36:35.073 D/LogEng: Test:   algorithm: AES/ECB/NoPadding
04-03 03:36:35.075 D/LogEng: Test:   algorithm: AES/ECB/PKCS5Padding
04-03 03:36:35.083 D/LogEng: Test:   algorithm: AES/CBC/NoPadding
04-03 03:36:35.087 D/LogEng: Test:   algorithm: AES/CBC/PKCS5Padding
04-03 03:36:35.100 D/LogEng: Test:   algorithm: AES/CFB/NoPadding
04-03 03:36:35.109 D/LogEng: Test:   algorithm: AES/CFB/PKCS5Padding
04-03 03:36:35.113 D/LogEng: Test:   algorithm: AES/CTR/NoPadding
04-03 03:36:35.119 D/LogEng: Test:   algorithm: AES/CTR/PKCS5Padding
04-03 03:36:35.147 D/LogEng: Test:   algorithm: AES/OFB/NoPadding
04-03 03:36:35.161 D/LogEng: Test:   algorithm: AES/OFB/PKCS5Padding
04-03 03:36:35.162 D/LogEng: Test:   algorithm: DESEDE/CBC/NoPadding
04-03 03:36:35.164 D/LogEng: Test:   algorithm: DESEDE/CBC/PKCS5Padding
04-03 03:36:35.166 D/LogEng: Test:   algorithm: DESEDE/CFB/NoPadding
04-03 03:36:35.169 D/LogEng: Test:   algorithm: DESEDE/CFB/PKCS5Padding
04-03 03:36:35.171 D/LogEng: Test:   algorithm: DESEDE/ECB/NoPadding
04-03 03:36:35.175 D/LogEng: Test:   algorithm: DESEDE/ECB/PKCS5Padding
04-03 03:36:35.176 D/LogEng: Test:   algorithm: DESEDE/OFB/NoPadding
04-03 03:36:35.207 D/LogEng: Test:   algorithm: DESEDE/OFB/PKCS5Padding
04-03 03:36:35.209 D/LogEng: Test:   algorithm: ARC4
04-03 03:36:35.212 D/LogEng: Test:   algorithm: HmacMD5
04-03 03:36:35.218 D/LogEng: Test:   algorithm: HmacSHA1
04-03 03:36:35.227 D/LogEng: Test:   algorithm: HmacSHA256
04-03 03:36:35.232 D/LogEng: Test:   algorithm: HmacSHA384
04-03 03:36:35.245 D/LogEng: Test:   algorithm: HmacSHA512
04-03 03:36:35.248 D/LogEng: Test:   algorithm: X509
04-03 03:36:35.259 D/LogEng: Test: provider: DRLCertFactory
04-03 03:36:35.271 D/LogEng: Test:   algorithm: X509
04-03 03:36:35.273 D/LogEng: Test: provider: BC
04-03 03:36:35.279 D/LogEng: Test:   algorithm: MD5
04-03 03:36:35.285 D/LogEng: Test:   algorithm: HMACMD5
04-03 03:36:35.287 D/LogEng: Test:   algorithm: HMACMD5
04-03 03:36:35.290 D/LogEng: Test:   algorithm: SHA-1
04-03 03:36:35.300 D/LogEng: Test:   algorithm: HMACSHA1
04-03 03:36:35.305 D/LogEng: Test:   algorithm: HMACSHA1
04-03 03:36:35.309 D/LogEng: Test:   algorithm: PBEWITHHMACSHA
04-03 03:36:35.315 D/LogEng: Test:   algorithm: PBEWITHHMACSHA1
04-03 03:36:35.319 D/LogEng: Test:   algorithm: PBEWITHHMACSHA1
04-03 03:36:35.324 D/LogEng: Test:   algorithm: PBKDF2WithHmacSHA1
04-03 03:36:35.332 D/LogEng: Test:   algorithm: PBKDF2WithHmacSHA1And8BIT
04-03 03:36:35.336 D/LogEng: Test:   algorithm: SHA-256
04-03 03:36:35.338 D/LogEng: Test:   algorithm: HMACSHA256
04-03 03:36:35.341 D/LogEng: Test:   algorithm: HMACSHA256
04-03 03:36:35.357 D/LogEng: Test:   algorithm: SHA-384
04-03 03:36:35.363 D/LogEng: Test:   algorithm: HMACSHA384
04-03 03:36:35.366 D/LogEng: Test:   algorithm: HMACSHA384
04-03 03:36:35.369 D/LogEng: Test:   algorithm: SHA-512
04-03 03:36:35.371 D/LogEng: Test:   algorithm: HMACSHA512
04-03 03:36:35.377 D/LogEng: Test:   algorithm: HMACSHA512
04-03 03:36:35.383 D/LogEng: Test:   algorithm: PKCS12PBE
04-03 03:36:35.385 D/LogEng: Test:   algorithm: AES
04-03 03:36:35.388 D/LogEng: Test:   algorithm: AES
04-03 03:36:35.401 D/LogEng: Test:   algorithm: AESWRAP
04-03 03:36:35.405 D/LogEng: Test:   algorithm: AES
04-03 03:36:35.417 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITAES-CBC-BC
04-03 03:36:35.420 D/LogEng: Test:   algorithm: PBEWITHSHAAND192BITAES-CBC-BC
04-03 03:36:35.431 D/LogEng: Test:   algorithm: PBEWITHSHAAND256BITAES-CBC-BC
04-03 03:36:35.475 D/LogEng: Test:   algorithm: PBEWITHSHA256AND128BITAES-CBC-BC
04-03 03:36:35.514 D/LogEng: Test:   algorithm: PBEWITHSHA256AND192BITAES-CBC-BC
04-03 03:36:35.520 D/LogEng: Test:   algorithm: PBEWITHSHA256AND256BITAES-CBC-BC
04-03 03:36:35.524 D/LogEng: Test:   algorithm: PBEWITHMD5AND128BITAES-CBC-OPENSSL
04-03 03:36:35.536 D/LogEng: Test:   algorithm: PBEWITHMD5AND192BITAES-CBC-OPENSSL
04-03 03:36:35.549 D/LogEng: Test:   algorithm: PBEWITHMD5AND256BITAES-CBC-OPENSSL
04-03 03:36:35.559 D/LogEng: Test:   algorithm: PBEWITHMD5AND128BITAES-CBC-OPENSSL
04-03 03:36:35.564 D/LogEng: Test:   algorithm: PBEWITHMD5AND192BITAES-CBC-OPENSSL
04-03 03:36:35.574 D/LogEng: Test:   algorithm: PBEWITHMD5AND256BITAES-CBC-OPENSSL
04-03 03:36:35.585 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITAES-CBC-BC
04-03 03:36:35.590 D/LogEng: Test:   algorithm: PBEWITHSHAAND192BITAES-CBC-BC
04-03 03:36:35.602 D/LogEng: Test:   algorithm: PBEWITHSHAAND256BITAES-CBC-BC
04-03 03:36:35.606 D/LogEng: Test:   algorithm: PBEWITHSHA256AND128BITAES-CBC-BC
04-03 03:36:35.608 D/LogEng: Test:   algorithm: PBEWITHSHA256AND192BITAES-CBC-BC
04-03 03:36:35.611 D/LogEng: Test:   algorithm: PBEWITHSHA256AND256BITAES-CBC-BC
04-03 03:36:35.614 D/LogEng: Test:   algorithm: ARC4
04-03 03:36:35.621 D/LogEng: Test:   algorithm: ARC4
04-03 03:36:35.625 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITRC4
04-03 03:36:35.628 D/LogEng: Test:   algorithm: PBEWITHSHAAND40BITRC4
04-03 03:36:35.636 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITRC4
04-03 03:36:35.653 D/LogEng: Test:   algorithm: PBEWITHSHAAND40BITRC4
04-03 03:36:35.674 D/LogEng: Test:   algorithm: BLOWFISH
04-03 03:36:35.684 D/LogEng: Test:   algorithm: BLOWFISH
04-03 03:36:35.709 D/LogEng: Test:   algorithm: BLOWFISH
04-03 03:36:35.737 D/LogEng: Test:   algorithm: DES
04-03 03:36:35.771 D/LogEng: Test:   algorithm: DES
04-03 03:36:35.839 D/LogEng: Test:   algorithm: DES
04-03 03:36:35.854 D/LogEng: Test:   algorithm: DES
04-03 03:36:35.864 D/LogEng: Test:   algorithm: PBEWITHMD5ANDDES
04-03 03:36:35.870 D/LogEng: Test:   algorithm: PBEWITHSHA1ANDDES
04-03 03:36:35.873 D/LogEng: Test:   algorithm: PBEWITHMD5ANDDES
04-03 03:36:35.880 D/LogEng: Test:   algorithm: PBEWITHSHA1ANDDES
04-03 03:36:35.883 D/LogEng: Test:   algorithm: DESEDE
04-03 03:36:35.887 D/LogEng: Test:   algorithm: DESEDEWRAP
04-03 03:36:35.942 D/LogEng: Test:   algorithm: DESEDE
04-03 03:36:35.946 D/LogEng: Test:   algorithm: DESEDE
04-03 03:36:35.949 D/LogEng: Test:   algorithm: DESEDE
04-03 03:36:35.956 D/LogEng: Test:   algorithm: PBEWITHSHAAND3-KEYTRIPLEDES-CBC
04-03 03:36:35.962 D/LogEng: Test:   algorithm: PBEWITHSHAAND2-KEYTRIPLEDES-CBC
04-03 03:36:35.965 D/LogEng: Test:   algorithm: PBEWITHSHAAND3-KEYTRIPLEDES-CBC
04-03 03:36:35.970 D/LogEng: Test:   algorithm: PBEWITHSHAAND2-KEYTRIPLEDES-CBC
04-03 03:36:35.979 D/LogEng: Test:   algorithm: PBEWITHMD5ANDRC2
04-03 03:36:35.984 D/LogEng: Test:   algorithm: PBEWITHSHA1ANDRC2
04-03 03:36:35.990 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITRC2-CBC
04-03 03:36:36.006 D/LogEng: Test:   algorithm: PBEWITHSHAAND40BITRC2-CBC
04-03 03:36:36.009 D/LogEng: Test:   algorithm: PBEWITHMD5ANDRC2
04-03 03:36:36.011 D/LogEng: Test:   algorithm: PBEWITHSHA1ANDRC2
04-03 03:36:36.014 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITRC2-CBC
04-03 03:36:36.021 D/LogEng: Test:   algorithm: PBEWITHSHAAND40BITRC2-CBC
04-03 03:36:36.027 D/LogEng: Test:   algorithm: PBEWITHSHAANDTWOFISH-CBC
04-03 03:36:36.030 D/LogEng: Test:   algorithm: PBEWITHSHAANDTWOFISH-CBC
04-03 03:36:36.035 D/LogEng: Test:   algorithm: X.509
04-03 03:36:36.038 D/LogEng: Test:   algorithm: DSA
04-03 03:36:36.047 D/LogEng: Test:   algorithm: DSA
04-03 03:36:36.050 D/LogEng: Test:   algorithm: DSA
04-03 03:36:36.052 D/LogEng: Test:   algorithm: DSA
04-03 03:36:36.055 D/LogEng: Test:   algorithm: SHA1withDSA
04-03 03:36:36.057 D/LogEng: Test:   algorithm: NONEWITHDSA
04-03 03:36:36.063 D/LogEng: Test:   algorithm: DH
04-03 03:36:36.069 D/LogEng: Test:   algorithm: DH
04-03 03:36:36.070 D/LogEng: Test:   algorithm: DH
04-03 03:36:36.073 D/LogEng: Test:   algorithm: DH
04-03 03:36:36.075 D/LogEng: Test:   algorithm: DH
04-03 03:36:36.084 D/LogEng: Test:   algorithm: ECDH
04-03 03:36:36.088 D/LogEng: Test:   algorithm: EC
04-03 03:36:36.089 D/LogEng: Test:   algorithm: EC
04-03 03:36:36.091 D/LogEng: Test:   algorithm: ECDSA
04-03 03:36:36.092 D/LogEng: Test:   algorithm: NONEwithECDSA
04-03 03:36:36.093 D/LogEng: Test:   algorithm: SHA256WITHECDSA
04-03 03:36:36.095 D/LogEng: Test:   algorithm: SHA384WITHECDSA
04-03 03:36:36.098 D/LogEng: Test:   algorithm: SHA512WITHECDSA
04-03 03:36:36.105 D/LogEng: Test:   algorithm: OAEP
04-03 03:36:36.109 D/LogEng: Test:   algorithm: RSA
04-03 03:36:36.115 D/LogEng: Test:   algorithm: RSA
04-03 03:36:36.116 D/LogEng: Test:   algorithm: RSA
04-03 03:36:36.117 D/LogEng: Test:   algorithm: MD5WITHRSA
04-03 03:36:36.120 D/LogEng: Test:   algorithm: SHA1WITHRSA
04-03 03:36:36.122 D/LogEng: Test:   algorithm: SHA256WITHRSA
04-03 03:36:36.125 D/LogEng: Test:   algorithm: SHA384WITHRSA
04-03 03:36:36.126 D/LogEng: Test:   algorithm: SHA512WITHRSA
04-03 03:36:36.132 D/LogEng: Test:   algorithm: BKS
04-03 03:36:36.138 D/LogEng: Test:   algorithm: BouncyCastle
04-03 03:36:36.140 D/LogEng: Test:   algorithm: PKCS12
04-03 03:36:36.142 D/LogEng: Test:   algorithm: PKIX
04-03 03:36:36.148 D/LogEng: Test:   algorithm: PKIX
04-03 03:36:36.150 D/LogEng: Test:   algorithm: Collection
04-03 03:36:36.155 D/LogEng: Test: provider: Crypto
04-03 03:36:36.156 D/LogEng: Test:   algorithm: SHA-1
04-03 03:36:36.159 D/LogEng: Test:   algorithm: SHA1PRNG
04-03 03:36:36.168 D/LogEng: Test:   algorithm: SHA1withDSA
04-03 03:36:36.172 D/LogEng: Test:   algorithm: DSA
04-03 03:36:36.177 D/LogEng: Test: provider: HarmonyJSSE
04-03 03:36:36.181 D/LogEng: Test:   algorithm: SSL
04-03 03:36:36.185 D/LogEng: Test:   algorithm: SSLv3
04-03 03:36:36.188 D/LogEng: Test:   algorithm: TLS
04-03 03:36:36.194 D/LogEng: Test:   algorithm: TLSv1
04-03 03:36:36.200 D/LogEng: Test:   algorithm: PKIX
04-03 03:36:36.201 D/LogEng: Test:   algorithm: PKIX
04-03 03:36:36.208 D/LogEng: Test:   algorithm: AndroidCAStore
04-03 03:36:36.215 D/LogEng: Test: provider: AndroidKeyStore
04-03 03:36:36.221 D/LogEng: Test:   algorithm: AndroidKeyStore
04-03 03:36:36.223 D/LogEng: Test:   algorithm: RSA
04-03 03:36:36.497 D/LogEng: Test: provider: AndroidOpenSSL
04-03 03:36:36.502 D/LogEng: Test:   algorithm: SSL
04-03 03:36:36.506 D/LogEng: Test:   algorithm: SSLv3
04-03 03:36:36.517 D/LogEng: Test:   algorithm: TLS
04-03 03:36:36.522 D/LogEng: Test:   algorithm: TLSv1
04-03 03:36:36.530 D/LogEng: Test:   algorithm: TLSv1.1
04-03 03:36:36.543 D/LogEng: Test:   algorithm: TLSv1.2
04-03 03:36:36.545 D/LogEng: Test:   algorithm: Default
04-03 03:36:36.559 D/LogEng: Test:   algorithm: SHA-1
04-03 03:36:36.561 D/LogEng: Test:   algorithm: SHA-256
04-03 03:36:36.578 D/LogEng: Test:   algorithm: SHA-384
04-03 03:36:36.600 D/LogEng: Test:   algorithm: SHA-512
04-03 03:36:36.626 D/LogEng: Test:   algorithm: MD5
04-03 03:36:36.664 D/LogEng: Test:   algorithm: RSA
04-03 03:36:36.669 D/LogEng: Test:   algorithm: DSA
04-03 03:36:36.677 D/LogEng: Test:   algorithm: EC
04-03 03:36:36.686 D/LogEng: Test:   algorithm: RSA
04-03 03:36:36.699 D/LogEng: Test:   algorithm: DSA
04-03 03:36:36.701 D/LogEng: Test:   algorithm: EC
04-03 03:36:36.702 D/LogEng: Test:   algorithm: ECDH
04-03 03:36:36.704 D/LogEng: Test:   algorithm: MD5WithRSA
04-03 03:36:36.715 D/LogEng: Test:   algorithm: SHA1WithRSA
04-03 03:36:36.720 D/LogEng: Test:   algorithm: SHA256WithRSA
04-03 03:36:36.724 D/LogEng: Test:   algorithm: SHA384WithRSA
04-03 03:36:36.729 D/LogEng: Test:   algorithm: SHA512WithRSA
04-03 03:36:36.732 D/LogEng: Test:   algorithm: SHA1withDSA
04-03 03:36:36.734 D/LogEng: Test:   algorithm: NONEwithRSA
04-03 03:36:36.736 D/LogEng: Test:   algorithm: ECDSA
04-03 03:36:36.742 D/LogEng: Test:   algorithm: SHA256withECDSA
04-03 03:36:36.747 D/LogEng: Test:   algorithm: SHA384withECDSA
04-03 03:36:36.750 D/LogEng: Test:   algorithm: SHA512withECDSA
04-03 03:36:36.756 D/LogEng: Test:   algorithm: SHA1PRNG
04-03 03:36:36.763 D/LogEng: Test:   algorithm: RSA/ECB/NoPadding
04-03 03:36:36.796 D/LogEng: Test:   algorithm: RSA/ECB/PKCS1Padding
04-03 03:36:36.798 D/LogEng: Test:   algorithm: AES/ECB/NoPadding
04-03 03:36:36.800 D/LogEng: Test:   algorithm: AES/ECB/PKCS5Padding
04-03 03:36:36.812 D/LogEng: Test:   algorithm: AES/CBC/NoPadding
04-03 03:36:36.814 D/LogEng: Test:   algorithm: AES/CBC/PKCS5Padding
04-03 03:36:36.816 D/LogEng: Test:   algorithm: AES/CFB/NoPadding
04-03 03:36:36.830 D/LogEng: Test:   algorithm: AES/CFB/PKCS5Padding
04-03 03:36:36.847 D/LogEng: Test:   algorithm: AES/CTR/NoPadding
04-03 03:36:36.864 D/LogEng: Test:   algorithm: AES/CTR/PKCS5Padding
04-03 03:36:36.870 D/LogEng: Test:   algorithm: AES/OFB/NoPadding
04-03 03:36:37.067 D/LogEng: Test:   algorithm: AES/OFB/PKCS5Padding
04-03 03:36:37.075 D/LogEng: Test:   algorithm: DESEDE/CBC/NoPadding
04-03 03:36:37.078 D/LogEng: Test:   algorithm: DESEDE/CBC/PKCS5Padding
04-03 03:36:37.154 D/LogEng: Test:   algorithm: DESEDE/CFB/NoPadding
04-03 03:36:37.170 D/LogEng: Test:   algorithm: DESEDE/CFB/PKCS5Padding
04-03 03:36:37.176 D/LogEng: Test:   algorithm: DESEDE/ECB/NoPadding
04-03 03:36:37.187 D/LogEng: Test:   algorithm: DESEDE/ECB/PKCS5Padding
04-03 03:36:37.188 D/LogEng: Test:   algorithm: DESEDE/OFB/NoPadding
04-03 03:36:37.192 D/LogEng: Test:   algorithm: DESEDE/OFB/PKCS5Padding
04-03 03:36:37.194 D/LogEng: Test:   algorithm: ARC4
04-03 03:36:37.197 D/LogEng: Test:   algorithm: HmacMD5
04-03 03:36:37.199 D/LogEng: Test:   algorithm: HmacSHA1
04-03 03:36:37.202 D/LogEng: Test:   algorithm: HmacSHA256
04-03 03:36:37.230 D/LogEng: Test:   algorithm: HmacSHA384
04-03 03:36:37.238 D/LogEng: Test:   algorithm: HmacSHA512
04-03 03:36:37.239 D/LogEng: Test:   algorithm: X509
04-03 03:36:37.263 D/LogEng: Test: provider: DRLCertFactory
04-03 03:36:37.264 D/LogEng: Test:   algorithm: X509
04-03 03:36:37.299 D/LogEng: Test: provider: BC
04-03 03:36:37.302 D/LogEng: Test:   algorithm: MD5
04-03 03:36:37.316 D/LogEng: Test:   algorithm: HMACMD5
04-03 03:36:37.319 D/LogEng: Test:   algorithm: HMACMD5
04-03 03:36:37.326 D/LogEng: Test:   algorithm: SHA-1
04-03 03:36:37.328 D/LogEng: Test:   algorithm: HMACSHA1
04-03 03:36:37.330 D/LogEng: Test:   algorithm: HMACSHA1
04-03 03:36:37.336 D/LogEng: Test:   algorithm: PBEWITHHMACSHA
04-03 03:36:37.343 D/LogEng: Test:   algorithm: PBEWITHHMACSHA1
04-03 03:36:37.349 D/LogEng: Test:   algorithm: PBEWITHHMACSHA1
04-03 03:36:37.358 D/LogEng: Test:   algorithm: PBKDF2WithHmacSHA1
04-03 03:36:37.360 D/LogEng: Test:   algorithm: PBKDF2WithHmacSHA1And8BIT
04-03 03:36:37.363 D/LogEng: Test:   algorithm: SHA-256
04-03 03:36:37.368 D/LogEng: Test:   algorithm: HMACSHA256
04-03 03:36:37.373 D/LogEng: Test:   algorithm: HMACSHA256
04-03 03:36:37.376 D/LogEng: Test:   algorithm: SHA-384
04-03 03:36:37.378 D/LogEng: Test:   algorithm: HMACSHA384
04-03 03:36:37.395 D/LogEng: Test:   algorithm: HMACSHA384
04-03 03:36:37.404 D/LogEng: Test:   algorithm: SHA-512
04-03 03:36:37.406 D/LogEng: Test:   algorithm: HMACSHA512
04-03 03:36:37.408 D/LogEng: Test:   algorithm: HMACSHA512
04-03 03:36:37.409 D/LogEng: Test:   algorithm: PKCS12PBE
04-03 03:36:37.410 D/LogEng: Test:   algorithm: AES
04-03 03:36:37.414 D/LogEng: Test:   algorithm: AES
04-03 03:36:37.421 D/LogEng: Test:   algorithm: AESWRAP
04-03 03:36:37.429 D/LogEng: Test:   algorithm: AES
04-03 03:36:37.436 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITAES-CBC-BC
04-03 03:36:37.450 D/LogEng: Test:   algorithm: PBEWITHSHAAND192BITAES-CBC-BC
04-03 03:36:37.454 D/LogEng: Test:   algorithm: PBEWITHSHAAND256BITAES-CBC-BC
04-03 03:36:37.469 D/LogEng: Test:   algorithm: PBEWITHSHA256AND128BITAES-CBC-BC
04-03 03:36:37.597 D/LogEng: Test:   algorithm: PBEWITHSHA256AND192BITAES-CBC-BC
04-03 03:36:37.603 D/LogEng: Test:   algorithm: PBEWITHSHA256AND256BITAES-CBC-BC
04-03 03:36:37.613 D/LogEng: Test:   algorithm: PBEWITHMD5AND128BITAES-CBC-OPENSSL
04-03 03:36:37.630 D/LogEng: Test:   algorithm: PBEWITHMD5AND192BITAES-CBC-OPENSSL
04-03 03:36:37.641 D/LogEng: Test:   algorithm: PBEWITHMD5AND256BITAES-CBC-OPENSSL
04-03 03:36:37.644 D/LogEng: Test:   algorithm: PBEWITHMD5AND128BITAES-CBC-OPENSSL
04-03 03:36:37.653 D/LogEng: Test:   algorithm: PBEWITHMD5AND192BITAES-CBC-OPENSSL
04-03 03:36:37.657 D/LogEng: Test:   algorithm: PBEWITHMD5AND256BITAES-CBC-OPENSSL
04-03 03:36:37.662 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITAES-CBC-BC
04-03 03:36:37.685 D/LogEng: Test:   algorithm: PBEWITHSHAAND192BITAES-CBC-BC
04-03 03:36:37.700 D/LogEng: Test:   algorithm: PBEWITHSHAAND256BITAES-CBC-BC
04-03 03:36:37.704 D/LogEng: Test:   algorithm: PBEWITHSHA256AND128BITAES-CBC-BC
04-03 03:36:37.718 D/LogEng: Test:   algorithm: PBEWITHSHA256AND192BITAES-CBC-BC
04-03 03:36:37.720 D/LogEng: Test:   algorithm: PBEWITHSHA256AND256BITAES-CBC-BC
04-03 03:36:37.748 D/LogEng: Test:   algorithm: ARC4
04-03 03:36:37.749 D/LogEng: Test:   algorithm: ARC4
04-03 03:36:37.750 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITRC4
04-03 03:36:37.764 D/LogEng: Test:   algorithm: PBEWITHSHAAND40BITRC4
04-03 03:36:37.774 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITRC4
04-03 03:36:37.795 D/LogEng: Test:   algorithm: PBEWITHSHAAND40BITRC4
04-03 03:36:37.803 D/LogEng: Test:   algorithm: BLOWFISH
04-03 03:36:37.814 D/LogEng: Test:   algorithm: BLOWFISH
04-03 03:36:37.878 D/LogEng: Test:   algorithm: BLOWFISH
04-03 03:36:37.883 D/LogEng: Test:   algorithm: DES
04-03 03:36:37.886 D/LogEng: Test:   algorithm: DES
04-03 03:36:37.890 D/LogEng: Test:   algorithm: DES
04-03 03:36:37.893 D/LogEng: Test:   algorithm: DES
04-03 03:36:37.897 D/LogEng: Test:   algorithm: PBEWITHMD5ANDDES
04-03 03:36:37.905 D/LogEng: Test:   algorithm: PBEWITHSHA1ANDDES
04-03 03:36:37.908 D/LogEng: Test:   algorithm: PBEWITHMD5ANDDES
04-03 03:36:37.956 D/LogEng: Test:   algorithm: PBEWITHSHA1ANDDES
04-03 03:36:37.959 D/LogEng: Test:   algorithm: DESEDE
04-03 03:36:37.966 D/LogEng: Test:   algorithm: DESEDEWRAP
04-03 03:36:37.975 D/LogEng: Test:   algorithm: DESEDE
04-03 03:36:37.995 D/LogEng: Test:   algorithm: DESEDE
04-03 03:36:38.029 D/LogEng: Test:   algorithm: DESEDE
04-03 03:36:38.044 D/LogEng: Test:   algorithm: PBEWITHSHAAND3-KEYTRIPLEDES-CBC
04-03 03:36:38.051 D/LogEng: Test:   algorithm: PBEWITHSHAAND2-KEYTRIPLEDES-CBC
04-03 03:36:38.060 D/LogEng: Test:   algorithm: PBEWITHSHAAND3-KEYTRIPLEDES-CBC
04-03 03:36:38.068 D/LogEng: Test:   algorithm: PBEWITHSHAAND2-KEYTRIPLEDES-CBC
04-03 03:36:38.117 D/LogEng: Test:   algorithm: PBEWITHMD5ANDRC2
04-03 03:36:38.143 D/LogEng: Test:   algorithm: PBEWITHSHA1ANDRC2
04-03 03:36:38.148 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITRC2-CBC
04-03 03:36:38.149 D/LogEng: Test:   algorithm: PBEWITHSHAAND40BITRC2-CBC
04-03 03:36:38.160 D/LogEng: Test:   algorithm: PBEWITHMD5ANDRC2
04-03 03:36:38.190 D/LogEng: Test:   algorithm: PBEWITHSHA1ANDRC2
04-03 03:36:38.193 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITRC2-CBC
04-03 03:36:38.197 D/LogEng: Test:   algorithm: PBEWITHSHAAND40BITRC2-CBC
04-03 03:36:38.208 D/LogEng: Test:   algorithm: PBEWITHSHAANDTWOFISH-CBC
04-03 03:36:38.211 D/LogEng: Test:   algorithm: PBEWITHSHAANDTWOFISH-CBC
04-03 03:36:38.214 D/LogEng: Test:   algorithm: X.509
04-03 03:36:38.221 D/LogEng: Test:   algorithm: DSA
04-03 03:36:38.244 D/LogEng: Test:   algorithm: DSA
04-03 03:36:38.246 D/LogEng: Test:   algorithm: DSA
04-03 03:36:38.255 D/LogEng: Test:   algorithm: DSA
04-03 03:36:38.266 D/LogEng: Test:   algorithm: SHA1withDSA
04-03 03:36:38.270 D/LogEng: Test:   algorithm: NONEWITHDSA
04-03 03:36:38.279 D/LogEng: Test:   algorithm: DH
04-03 03:36:38.299 D/LogEng: Test:   algorithm: DH
04-03 03:36:38.352 D/LogEng: Test:   algorithm: DH
04-03 03:36:38.439 D/LogEng: Test:   algorithm: DH
04-03 03:36:38.487 D/LogEng: Test:   algorithm: DH
04-03 03:36:38.491 D/LogEng: Test:   algorithm: ECDH
04-03 03:36:38.494 D/LogEng: Test:   algorithm: EC
04-03 03:36:38.498 D/LogEng: Test:   algorithm: EC
04-03 03:36:38.501 D/LogEng: Test:   algorithm: ECDSA
04-03 03:36:38.502 D/LogEng: Test:   algorithm: NONEwithECDSA
04-03 03:36:38.507 D/LogEng: Test:   algorithm: SHA256WITHECDSA
04-03 03:36:38.509 D/LogEng: Test:   algorithm: SHA384WITHECDSA
04-03 03:36:38.511 D/LogEng: Test:   algorithm: SHA512WITHECDSA
04-03 03:36:38.512 D/LogEng: Test:   algorithm: OAEP
04-03 03:36:38.516 D/LogEng: Test:   algorithm: RSA
04-03 03:36:38.518 D/LogEng: Test:   algorithm: RSA
04-03 03:36:38.521 D/LogEng: Test:   algorithm: RSA
04-03 03:36:38.530 D/LogEng: Test:   algorithm: MD5WITHRSA
04-03 03:36:38.537 D/LogEng: Test:   algorithm: SHA1WITHRSA
04-03 03:36:38.553 D/LogEng: Test:   algorithm: SHA256WITHRSA
04-03 03:36:38.562 D/LogEng: Test:   algorithm: SHA384WITHRSA
04-03 03:36:38.569 D/LogEng: Test:   algorithm: SHA512WITHRSA
04-03 03:36:38.578 D/LogEng: Test:   algorithm: BKS
04-03 03:36:38.585 D/LogEng: Test:   algorithm: BouncyCastle
04-03 03:36:38.593 D/LogEng: Test:   algorithm: PKCS12
04-03 03:36:38.597 D/LogEng: Test:   algorithm: PKIX
04-03 03:36:38.600 D/LogEng: Test:   algorithm: PKIX
04-03 03:36:38.604 D/LogEng: Test:   algorithm: Collection
04-03 03:36:38.605 D/LogEng: Test: provider: Crypto
04-03 03:36:38.611 D/LogEng: Test:   algorithm: SHA-1
04-03 03:36:38.613 D/LogEng: Test:   algorithm: SHA1PRNG
04-03 03:36:38.614 D/LogEng: Test:   algorithm: SHA1withDSA
04-03 03:36:38.632 D/LogEng: Test:   algorithm: DSA
04-03 03:36:38.637 D/LogEng: Test: provider: HarmonyJSSE
04-03 03:36:38.647 D/LogEng: Test:   algorithm: SSL
04-03 03:36:38.649 D/LogEng: Test:   algorithm: SSLv3
04-03 03:36:38.664 D/LogEng: Test:   algorithm: TLS
04-03 03:36:38.668 D/LogEng: Test:   algorithm: TLSv1
04-03 03:36:38.671 D/LogEng: Test:   algorithm: PKIX
04-03 03:36:38.737 D/LogEng: Test:   algorithm: PKIX
04-03 03:36:38.741 D/LogEng: Test:   algorithm: AndroidCAStore
04-03 03:36:38.750 D/LogEng: Test: provider: AndroidKeyStore
04-03 03:36:38.755 D/LogEng: Test:   algorithm: AndroidKeyStore
04-03 03:36:38.768 D/LogEng: Test:   algorithm: RSA
04-03 03:36:38.975 D/LogEng: Test: provider: AndroidOpenSSL
04-03 03:36:38.979 D/LogEng: Test:   algorithm: SSL
04-03 03:36:38.981 D/LogEng: Test:   algorithm: SSLv3
04-03 03:36:38.995 D/LogEng: Test:   algorithm: TLS
04-03 03:36:38.998 D/LogEng: Test:   algorithm: TLSv1
04-03 03:36:39.005 D/LogEng: Test:   algorithm: TLSv1.1
04-03 03:36:39.065 D/LogEng: Test:   algorithm: TLSv1.2
04-03 03:36:39.067 D/LogEng: Test:   algorithm: Default
04-03 03:36:39.070 D/LogEng: Test:   algorithm: SHA-1
04-03 03:36:39.075 D/LogEng: Test:   algorithm: SHA-256
04-03 03:36:39.079 D/LogEng: Test:   algorithm: SHA-384
04-03 03:36:39.082 D/LogEng: Test:   algorithm: SHA-512
04-03 03:36:39.086 D/LogEng: Test:   algorithm: MD5
04-03 03:36:39.095 D/LogEng: Test:   algorithm: RSA
04-03 03:36:39.098 D/LogEng: Test:   algorithm: DSA
04-03 03:36:39.109 D/LogEng: Test:   algorithm: EC
04-03 03:36:39.111 D/LogEng: Test:   algorithm: RSA
04-03 03:36:39.116 D/LogEng: Test:   algorithm: DSA
04-03 03:36:39.118 D/LogEng: Test:   algorithm: EC
04-03 03:36:39.122 D/LogEng: Test:   algorithm: ECDH
04-03 03:36:39.130 D/LogEng: Test:   algorithm: MD5WithRSA
04-03 03:36:39.139 D/LogEng: Test:   algorithm: SHA1WithRSA
04-03 03:36:39.146 D/LogEng: Test:   algorithm: SHA256WithRSA
04-03 03:36:39.153 D/LogEng: Test:   algorithm: SHA384WithRSA
04-03 03:36:39.162 D/LogEng: Test:   algorithm: SHA512WithRSA
04-03 03:36:39.167 D/LogEng: Test:   algorithm: SHA1withDSA
04-03 03:36:39.172 D/LogEng: Test:   algorithm: NONEwithRSA
04-03 03:36:39.187 D/LogEng: Test:   algorithm: ECDSA
04-03 03:36:39.196 D/LogEng: Test:   algorithm: SHA256withECDSA
04-03 03:36:39.210 D/LogEng: Test:   algorithm: SHA384withECDSA
04-03 03:36:39.217 D/LogEng: Test:   algorithm: SHA512withECDSA
04-03 03:36:39.219 D/LogEng: Test:   algorithm: SHA1PRNG
04-03 03:36:39.221 D/LogEng: Test:   algorithm: RSA/ECB/NoPadding
04-03 03:36:39.222 D/LogEng: Test:   algorithm: RSA/ECB/PKCS1Padding
04-03 03:36:39.244 D/LogEng: Test:   algorithm: AES/ECB/NoPadding
04-03 03:36:39.246 D/LogEng: Test:   algorithm: AES/ECB/PKCS5Padding
04-03 03:36:39.247 D/LogEng: Test:   algorithm: AES/CBC/NoPadding
04-03 03:36:39.249 D/LogEng: Test:   algorithm: AES/CBC/PKCS5Padding
04-03 03:36:39.250 D/LogEng: Test:   algorithm: AES/CFB/NoPadding
04-03 03:36:39.251 D/LogEng: Test:   algorithm: AES/CFB/PKCS5Padding
04-03 03:36:39.254 D/LogEng: Test:   algorithm: AES/CTR/NoPadding
04-03 03:36:39.257 D/LogEng: Test:   algorithm: AES/CTR/PKCS5Padding
04-03 03:36:39.258 D/LogEng: Test:   algorithm: AES/OFB/NoPadding
04-03 03:36:39.266 D/LogEng: Test:   algorithm: AES/OFB/PKCS5Padding
04-03 03:36:39.283 D/LogEng: Test:   algorithm: DESEDE/CBC/NoPadding
04-03 03:36:39.288 D/LogEng: Test:   algorithm: DESEDE/CBC/PKCS5Padding
04-03 03:36:39.292 D/LogEng: Test:   algorithm: DESEDE/CFB/NoPadding
04-03 03:36:39.297 D/LogEng: Test:   algorithm: DESEDE/CFB/PKCS5Padding
04-03 03:36:39.303 D/LogEng: Test:   algorithm: DESEDE/ECB/NoPadding
04-03 03:36:39.306 D/LogEng: Test:   algorithm: DESEDE/ECB/PKCS5Padding
04-03 03:36:39.320 D/LogEng: Test:   algorithm: DESEDE/OFB/NoPadding
04-03 03:36:39.323 D/LogEng: Test:   algorithm: DESEDE/OFB/PKCS5Padding
04-03 03:36:39.329 D/LogEng: Test:   algorithm: ARC4
04-03 03:36:39.339 D/LogEng: Test:   algorithm: HmacMD5
04-03 03:36:39.346 D/LogEng: Test:   algorithm: HmacSHA1
04-03 03:36:39.351 D/LogEng: Test:   algorithm: HmacSHA256
04-03 03:36:39.354 D/LogEng: Test:   algorithm: HmacSHA384
04-03 03:36:39.367 D/LogEng: Test:   algorithm: HmacSHA512
04-03 03:36:39.369 D/LogEng: Test:   algorithm: X509
04-03 03:36:39.377 D/LogEng: Test: provider: DRLCertFactory
04-03 03:36:39.380 D/LogEng: Test:   algorithm: X509
04-03 03:36:39.387 D/LogEng: Test: provider: BC
04-03 03:36:39.390 D/LogEng: Test:   algorithm: MD5
04-03 03:36:39.392 D/LogEng: Test:   algorithm: HMACMD5
04-03 03:36:39.398 D/LogEng: Test:   algorithm: HMACMD5
04-03 03:36:39.401 D/LogEng: Test:   algorithm: SHA-1
04-03 03:36:39.403 D/LogEng: Test:   algorithm: HMACSHA1
04-03 03:36:39.408 D/LogEng: Test:   algorithm: HMACSHA1
04-03 03:36:39.410 D/LogEng: Test:   algorithm: PBEWITHHMACSHA
04-03 03:36:39.414 D/LogEng: Test:   algorithm: PBEWITHHMACSHA1
04-03 03:36:39.419 D/LogEng: Test:   algorithm: PBEWITHHMACSHA1
04-03 03:36:39.424 D/LogEng: Test:   algorithm: PBKDF2WithHmacSHA1
04-03 03:36:39.431 D/LogEng: Test:   algorithm: PBKDF2WithHmacSHA1And8BIT
04-03 03:36:39.433 D/LogEng: Test:   algorithm: SHA-256
04-03 03:36:39.435 D/LogEng: Test:   algorithm: HMACSHA256
04-03 03:36:39.446 D/LogEng: Test:   algorithm: HMACSHA256
04-03 03:36:39.447 D/LogEng: Test:   algorithm: SHA-384
04-03 03:36:39.452 D/LogEng: Test:   algorithm: HMACSHA384
04-03 03:36:39.467 D/LogEng: Test:   algorithm: HMACSHA384
04-03 03:36:39.481 D/LogEng: Test:   algorithm: SHA-512
04-03 03:36:39.493 D/LogEng: Test:   algorithm: HMACSHA512
04-03 03:36:39.503 D/LogEng: Test:   algorithm: HMACSHA512
04-03 03:36:39.510 D/LogEng: Test:   algorithm: PKCS12PBE
04-03 03:36:39.563 D/LogEng: Test:   algorithm: AES
04-03 03:36:39.572 D/LogEng: Test:   algorithm: AES
04-03 03:36:39.620 D/LogEng: Test:   algorithm: AESWRAP
04-03 03:36:39.666 D/LogEng: Test:   algorithm: AES
04-03 03:36:39.675 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITAES-CBC-BC
04-03 03:36:39.678 D/LogEng: Test:   algorithm: PBEWITHSHAAND192BITAES-CBC-BC
04-03 03:36:39.690 D/LogEng: Test:   algorithm: PBEWITHSHAAND256BITAES-CBC-BC
04-03 03:36:39.701 D/LogEng: Test:   algorithm: PBEWITHSHA256AND128BITAES-CBC-BC
04-03 03:36:39.705 D/LogEng: Test:   algorithm: PBEWITHSHA256AND192BITAES-CBC-BC
04-03 03:36:39.707 D/LogEng: Test:   algorithm: PBEWITHSHA256AND256BITAES-CBC-BC
04-03 03:36:39.725 D/LogEng: Test:   algorithm: PBEWITHMD5AND128BITAES-CBC-OPENSSL
04-03 03:36:39.741 D/LogEng: Test:   algorithm: PBEWITHMD5AND192BITAES-CBC-OPENSSL
04-03 03:36:39.748 D/LogEng: Test:   algorithm: PBEWITHMD5AND256BITAES-CBC-OPENSSL
04-03 03:36:39.753 D/LogEng: Test:   algorithm: PBEWITHMD5AND128BITAES-CBC-OPENSSL
04-03 03:36:39.756 D/LogEng: Test:   algorithm: PBEWITHMD5AND192BITAES-CBC-OPENSSL
04-03 03:36:39.764 D/LogEng: Test:   algorithm: PBEWITHMD5AND256BITAES-CBC-OPENSSL
04-03 03:36:39.778 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITAES-CBC-BC
04-03 03:36:39.805 D/LogEng: Test:   algorithm: PBEWITHSHAAND192BITAES-CBC-BC
04-03 03:36:39.817 D/LogEng: Test:   algorithm: PBEWITHSHAAND256BITAES-CBC-BC
04-03 03:36:39.819 D/LogEng: Test:   algorithm: PBEWITHSHA256AND128BITAES-CBC-BC
04-03 03:36:39.834 D/LogEng: Test:   algorithm: PBEWITHSHA256AND192BITAES-CBC-BC
04-03 03:36:39.854 D/LogEng: Test:   algorithm: PBEWITHSHA256AND256BITAES-CBC-BC
04-03 03:36:39.876 D/LogEng: Test:   algorithm: ARC4
04-03 03:36:39.904 D/LogEng: Test:   algorithm: ARC4
04-03 03:36:39.914 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITRC4
04-03 03:36:39.956 D/LogEng: Test:   algorithm: PBEWITHSHAAND40BITRC4
04-03 03:36:39.971 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITRC4
04-03 03:36:39.981 D/LogEng: Test:   algorithm: PBEWITHSHAAND40BITRC4
04-03 03:36:39.999 D/LogEng: Test:   algorithm: BLOWFISH
04-03 03:36:40.017 D/LogEng: Test:   algorithm: BLOWFISH
04-03 03:36:40.019 D/LogEng: Test:   algorithm: BLOWFISH
04-03 03:36:40.021 D/LogEng: Test:   algorithm: DES
04-03 03:36:40.026 D/LogEng: Test:   algorithm: DES
04-03 03:36:40.028 D/LogEng: Test:   algorithm: DES
04-03 03:36:40.035 D/LogEng: Test:   algorithm: DES
04-03 03:36:40.040 D/LogEng: Test:   algorithm: PBEWITHMD5ANDDES
04-03 03:36:40.042 D/LogEng: Test:   algorithm: PBEWITHSHA1ANDDES
04-03 03:36:40.044 D/LogEng: Test:   algorithm: PBEWITHMD5ANDDES
04-03 03:36:40.049 D/LogEng: Test:   algorithm: PBEWITHSHA1ANDDES
04-03 03:36:40.062 D/LogEng: Test:   algorithm: DESEDE
04-03 03:36:40.084 D/LogEng: Test:   algorithm: DESEDEWRAP
04-03 03:36:40.094 D/LogEng: Test:   algorithm: DESEDE
04-03 03:36:40.116 D/LogEng: Test:   algorithm: DESEDE
04-03 03:36:40.156 D/LogEng: Test:   algorithm: DESEDE
04-03 03:36:40.231 D/LogEng: Test:   algorithm: PBEWITHSHAAND3-KEYTRIPLEDES-CBC
04-03 03:36:40.244 D/LogEng: Test:   algorithm: PBEWITHSHAAND2-KEYTRIPLEDES-CBC
04-03 03:36:40.249 D/LogEng: Test:   algorithm: PBEWITHSHAAND3-KEYTRIPLEDES-CBC
04-03 03:36:40.251 D/LogEng: Test:   algorithm: PBEWITHSHAAND2-KEYTRIPLEDES-CBC
04-03 03:36:40.253 D/LogEng: Test:   algorithm: PBEWITHMD5ANDRC2
04-03 03:36:40.259 D/LogEng: Test:   algorithm: PBEWITHSHA1ANDRC2
04-03 03:36:40.264 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITRC2-CBC
04-03 03:36:40.267 D/LogEng: Test:   algorithm: PBEWITHSHAAND40BITRC2-CBC
04-03 03:36:40.270 D/LogEng: Test:   algorithm: PBEWITHMD5ANDRC2
04-03 03:36:40.283 D/LogEng: Test:   algorithm: PBEWITHSHA1ANDRC2
04-03 03:36:40.288 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITRC2-CBC
04-03 03:36:40.301 D/LogEng: Test:   algorithm: PBEWITHSHAAND40BITRC2-CBC
04-03 03:36:40.306 D/LogEng: Test:   algorithm: PBEWITHSHAANDTWOFISH-CBC
04-03 03:36:40.309 D/LogEng: Test:   algorithm: PBEWITHSHAANDTWOFISH-CBC
04-03 03:36:40.313 D/LogEng: Test:   algorithm: X.509
04-03 03:36:40.315 D/LogEng: Test:   algorithm: DSA
04-03 03:36:40.317 D/LogEng: Test:   algorithm: DSA
04-03 03:36:40.324 D/LogEng: Test:   algorithm: DSA
04-03 03:36:40.336 D/LogEng: Test:   algorithm: DSA
04-03 03:36:40.347 D/LogEng: Test:   algorithm: SHA1withDSA
04-03 03:36:40.354 D/LogEng: Test:   algorithm: NONEWITHDSA
04-03 03:36:40.360 D/LogEng: Test:   algorithm: DH
04-03 03:36:40.367 D/LogEng: Test:   algorithm: DH
04-03 03:36:40.373 D/LogEng: Test:   algorithm: DH
04-03 03:36:40.378 D/LogEng: Test:   algorithm: DH
04-03 03:36:40.381 D/LogEng: Test:   algorithm: DH
04-03 03:36:40.384 D/LogEng: Test:   algorithm: ECDH
04-03 03:36:40.388 D/LogEng: Test:   algorithm: EC
04-03 03:36:40.390 D/LogEng: Test:   algorithm: EC
04-03 03:36:40.395 D/LogEng: Test:   algorithm: ECDSA
04-03 03:36:40.397 D/LogEng: Test:   algorithm: NONEwithECDSA
04-03 03:36:40.404 D/LogEng: Test:   algorithm: SHA256WITHECDSA
04-03 03:36:40.408 D/LogEng: Test:   algorithm: SHA384WITHECDSA
04-03 03:36:40.411 D/LogEng: Test:   algorithm: SHA512WITHECDSA
04-03 03:36:40.413 D/LogEng: Test:   algorithm: OAEP
04-03 03:36:40.443 D/LogEng: Test:   algorithm: RSA
04-03 03:36:40.445 D/LogEng: Test:   algorithm: RSA
04-03 03:36:40.448 D/LogEng: Test:   algorithm: RSA
04-03 03:36:40.454 D/LogEng: Test:   algorithm: MD5WITHRSA
04-03 03:36:40.460 D/LogEng: Test:   algorithm: SHA1WITHRSA
04-03 03:36:40.464 D/LogEng: Test:   algorithm: SHA256WITHRSA
04-03 03:36:40.475 D/LogEng: Test:   algorithm: SHA384WITHRSA
04-03 03:36:40.477 D/LogEng: Test:   algorithm: SHA512WITHRSA
04-03 03:36:40.479 D/LogEng: Test:   algorithm: BKS
04-03 03:36:40.485 D/LogEng: Test:   algorithm: BouncyCastle
04-03 03:36:40.494 D/LogEng: Test:   algorithm: PKCS12
04-03 03:36:40.501 D/LogEng: Test:   algorithm: PKIX
04-03 03:36:40.504 D/LogEng: Test:   algorithm: PKIX
04-03 03:36:40.507 D/LogEng: Test:   algorithm: Collection
04-03 03:36:40.510 D/LogEng: Test: provider: Crypto
04-03 03:36:40.515 D/LogEng: Test:   algorithm: SHA-1
04-03 03:36:40.532 D/LogEng: Test:   algorithm: SHA1PRNG
04-03 03:36:40.534 D/LogEng: Test:   algorithm: SHA1withDSA
04-03 03:36:40.535 D/LogEng: Test:   algorithm: DSA
04-03 03:36:40.537 D/LogEng: Test: provider: HarmonyJSSE
04-03 03:36:40.539 D/LogEng: Test:   algorithm: SSL
04-03 03:36:40.541 D/LogEng: Test:   algorithm: SSLv3
04-03 03:36:40.543 D/LogEng: Test:   algorithm: TLS
04-03 03:36:40.549 D/LogEng: Test:   algorithm: TLSv1
04-03 03:36:40.551 D/LogEng: Test:   algorithm: PKIX
04-03 03:36:40.555 D/LogEng: Test:   algorithm: PKIX
04-03 03:36:40.556 D/LogEng: Test:   algorithm: AndroidCAStore
04-03 03:36:40.558 D/LogEng: Test: provider: AndroidKeyStore
04-03 03:36:40.563 D/LogEng: Test:   algorithm: AndroidKeyStore
04-03 03:36:40.577 D/LogEng: Test:   algorithm: RSA
04-03 03:36:40.763 D/LogEng: Test: provider: AndroidOpenSSL
04-03 03:36:40.765 D/LogEng: Test:   algorithm: SSL
04-03 03:36:40.766 D/LogEng: Test:   algorithm: SSLv3
04-03 03:36:40.775 D/LogEng: Test:   algorithm: TLS
04-03 03:36:40.777 D/LogEng: Test:   algorithm: TLSv1
04-03 03:36:40.780 D/LogEng: Test:   algorithm: TLSv1.1
04-03 03:36:40.785 D/LogEng: Test:   algorithm: TLSv1.2
04-03 03:36:40.801 D/LogEng: Test:   algorithm: Default
04-03 03:36:40.811 D/LogEng: Test:   algorithm: SHA-1
04-03 03:36:40.857 D/LogEng: Test:   algorithm: SHA-256
04-03 03:36:40.869 D/LogEng: Test:   algorithm: SHA-384
04-03 03:36:40.872 D/LogEng: Test:   algorithm: SHA-512
04-03 03:36:40.875 D/LogEng: Test:   algorithm: MD5
04-03 03:36:40.877 D/LogEng: Test:   algorithm: RSA
04-03 03:36:40.879 D/LogEng: Test:   algorithm: DSA
04-03 03:36:40.882 D/LogEng: Test:   algorithm: EC
04-03 03:36:40.887 D/LogEng: Test:   algorithm: RSA
04-03 03:36:40.893 D/LogEng: Test:   algorithm: DSA
04-03 03:36:40.899 D/LogEng: Test:   algorithm: EC
04-03 03:36:40.902 D/LogEng: Test:   algorithm: ECDH
04-03 03:36:40.906 D/LogEng: Test:   algorithm: MD5WithRSA
04-03 03:36:40.909 D/LogEng: Test:   algorithm: SHA1WithRSA
04-03 03:36:40.912 D/LogEng: Test:   algorithm: SHA256WithRSA
04-03 03:36:40.918 D/LogEng: Test:   algorithm: SHA384WithRSA
04-03 03:36:40.924 D/LogEng: Test:   algorithm: SHA512WithRSA
04-03 03:36:40.939 D/LogEng: Test:   algorithm: SHA1withDSA
04-03 03:36:40.968 D/LogEng: Test:   algorithm: NONEwithRSA
04-03 03:36:40.979 D/LogEng: Test:   algorithm: ECDSA
04-03 03:36:40.981 D/LogEng: Test:   algorithm: SHA256withECDSA
04-03 03:36:40.983 D/LogEng: Test:   algorithm: SHA384withECDSA
04-03 03:36:40.985 D/LogEng: Test:   algorithm: SHA512withECDSA
04-03 03:36:40.986 D/LogEng: Test:   algorithm: SHA1PRNG
04-03 03:36:40.988 D/LogEng: Test:   algorithm: RSA/ECB/NoPadding
04-03 03:36:40.991 D/LogEng: Test:   algorithm: RSA/ECB/PKCS1Padding
04-03 03:36:41.003 D/LogEng: Test:   algorithm: AES/ECB/NoPadding
04-03 03:36:41.034 D/LogEng: Test:   algorithm: AES/ECB/PKCS5Padding
04-03 03:36:41.041 D/LogEng: Test:   algorithm: AES/CBC/NoPadding
04-03 03:36:41.059 D/LogEng: Test:   algorithm: AES/CBC/PKCS5Padding
04-03 03:36:41.062 D/LogEng: Test:   algorithm: AES/CFB/NoPadding
04-03 03:36:41.064 D/LogEng: Test:   algorithm: AES/CFB/PKCS5Padding
04-03 03:36:41.065 D/LogEng: Test:   algorithm: AES/CTR/NoPadding
04-03 03:36:41.067 D/LogEng: Test:   algorithm: AES/CTR/PKCS5Padding
04-03 03:36:41.069 D/LogEng: Test:   algorithm: AES/OFB/NoPadding
04-03 03:36:41.070 D/LogEng: Test:   algorithm: AES/OFB/PKCS5Padding
04-03 03:36:41.071 D/LogEng: Test:   algorithm: DESEDE/CBC/NoPadding
04-03 03:36:41.080 D/LogEng: Test:   algorithm: DESEDE/CBC/PKCS5Padding
04-03 03:36:41.083 D/LogEng: Test:   algorithm: DESEDE/CFB/NoPadding
04-03 03:36:41.091 D/LogEng: Test:   algorithm: DESEDE/CFB/PKCS5Padding
04-03 03:36:41.106 D/LogEng: Test:   algorithm: DESEDE/ECB/NoPadding
04-03 03:36:41.113 D/LogEng: Test:   algorithm: DESEDE/ECB/PKCS5Padding
04-03 03:36:41.121 D/LogEng: Test:   algorithm: DESEDE/OFB/NoPadding
04-03 03:36:41.126 D/LogEng: Test:   algorithm: DESEDE/OFB/PKCS5Padding
04-03 03:36:41.133 D/LogEng: Test:   algorithm: ARC4
04-03 03:36:41.135 D/LogEng: Test:   algorithm: HmacMD5
04-03 03:36:41.137 D/LogEng: Test:   algorithm: HmacSHA1
04-03 03:36:41.145 D/LogEng: Test:   algorithm: HmacSHA256
04-03 03:36:41.151 D/LogEng: Test:   algorithm: HmacSHA384
04-03 03:36:41.154 D/LogEng: Test:   algorithm: HmacSHA512
04-03 03:36:41.160 D/LogEng: Test:   algorithm: X509
04-03 03:36:41.171 D/LogEng: Test: provider: DRLCertFactory
04-03 03:36:41.188 D/LogEng: Test:   algorithm: X509
04-03 03:36:41.202 D/LogEng: Test: provider: BC
04-03 03:36:41.213 D/LogEng: Test:   algorithm: MD5
04-03 03:36:41.215 D/LogEng: Test:   algorithm: HMACMD5
04-03 03:36:41.217 D/LogEng: Test:   algorithm: HMACMD5
04-03 03:36:41.223 D/LogEng: Test:   algorithm: SHA-1
04-03 03:36:41.226 D/LogEng: Test:   algorithm: HMACSHA1
04-03 03:36:41.230 D/LogEng: Test:   algorithm: HMACSHA1
04-03 03:36:41.236 D/LogEng: Test:   algorithm: PBEWITHHMACSHA
04-03 03:36:41.248 D/LogEng: Test:   algorithm: PBEWITHHMACSHA1
04-03 03:36:41.249 D/LogEng: Test:   algorithm: PBEWITHHMACSHA1
04-03 03:36:41.251 D/LogEng: Test:   algorithm: PBKDF2WithHmacSHA1
04-03 03:36:41.253 D/LogEng: Test:   algorithm: PBKDF2WithHmacSHA1And8BIT
04-03 03:36:41.254 D/LogEng: Test:   algorithm: SHA-256
04-03 03:36:41.258 D/LogEng: Test:   algorithm: HMACSHA256
04-03 03:36:41.260 D/LogEng: Test:   algorithm: HMACSHA256
04-03 03:36:41.276 D/LogEng: Test:   algorithm: SHA-384
04-03 03:36:41.283 D/LogEng: Test:   algorithm: HMACSHA384
04-03 03:36:41.305 D/LogEng: Test:   algorithm: HMACSHA384
04-03 03:36:41.314 D/LogEng: Test:   algorithm: SHA-512
04-03 03:36:41.319 D/LogEng: Test:   algorithm: HMACSHA512
04-03 03:36:41.324 D/LogEng: Test:   algorithm: HMACSHA512
04-03 03:36:41.327 D/LogEng: Test:   algorithm: PKCS12PBE
04-03 03:36:41.330 D/LogEng: Test:   algorithm: AES
04-03 03:36:41.336 D/LogEng: Test:   algorithm: AES
04-03 03:36:41.344 D/LogEng: Test:   algorithm: AESWRAP
04-03 03:36:41.348 D/LogEng: Test:   algorithm: AES
04-03 03:36:41.353 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITAES-CBC-BC
04-03 03:36:41.357 D/LogEng: Test:   algorithm: PBEWITHSHAAND192BITAES-CBC-BC
04-03 03:36:41.371 D/LogEng: Test:   algorithm: PBEWITHSHAAND256BITAES-CBC-BC
04-03 03:36:41.375 D/LogEng: Test:   algorithm: PBEWITHSHA256AND128BITAES-CBC-BC
04-03 03:36:41.377 D/LogEng: Test:   algorithm: PBEWITHSHA256AND192BITAES-CBC-BC
04-03 03:36:41.380 D/LogEng: Test:   algorithm: PBEWITHSHA256AND256BITAES-CBC-BC
04-03 03:36:41.386 D/LogEng: Test:   algorithm: PBEWITHMD5AND128BITAES-CBC-OPENSSL
04-03 03:36:41.390 D/LogEng: Test:   algorithm: PBEWITHMD5AND192BITAES-CBC-OPENSSL
04-03 03:36:41.395 D/LogEng: Test:   algorithm: PBEWITHMD5AND256BITAES-CBC-OPENSSL
04-03 03:36:41.399 D/LogEng: Test:   algorithm: PBEWITHMD5AND128BITAES-CBC-OPENSSL
04-03 03:36:41.407 D/LogEng: Test:   algorithm: PBEWITHMD5AND192BITAES-CBC-OPENSSL
04-03 03:36:41.415 D/LogEng: Test:   algorithm: PBEWITHMD5AND256BITAES-CBC-OPENSSL
04-03 03:36:41.419 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITAES-CBC-BC
04-03 03:36:41.427 D/LogEng: Test:   algorithm: PBEWITHSHAAND192BITAES-CBC-BC
04-03 03:36:41.431 D/LogEng: Test:   algorithm: PBEWITHSHAAND256BITAES-CBC-BC
04-03 03:36:41.434 D/LogEng: Test:   algorithm: PBEWITHSHA256AND128BITAES-CBC-BC
04-03 03:36:41.440 D/LogEng: Test:   algorithm: PBEWITHSHA256AND192BITAES-CBC-BC
04-03 03:36:41.443 D/LogEng: Test:   algorithm: PBEWITHSHA256AND256BITAES-CBC-BC
04-03 03:36:41.447 D/LogEng: Test:   algorithm: ARC4
04-03 03:36:41.450 D/LogEng: Test:   algorithm: ARC4
04-03 03:36:41.454 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITRC4
04-03 03:36:41.456 D/LogEng: Test:   algorithm: PBEWITHSHAAND40BITRC4
04-03 03:36:41.458 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITRC4
04-03 03:36:41.469 D/LogEng: Test:   algorithm: PBEWITHSHAAND40BITRC4
04-03 03:36:41.473 D/LogEng: Test:   algorithm: BLOWFISH
04-03 03:36:41.480 D/LogEng: Test:   algorithm: BLOWFISH
04-03 03:36:41.483 D/LogEng: Test:   algorithm: BLOWFISH
04-03 03:36:41.491 D/LogEng: Test:   algorithm: DES
04-03 03:36:41.508 D/LogEng: Test:   algorithm: DES
04-03 03:36:41.525 D/LogEng: Test:   algorithm: DES
04-03 03:36:41.556 D/LogEng: Test:   algorithm: DES
04-03 03:36:41.558 D/LogEng: Test:   algorithm: PBEWITHMD5ANDDES
04-03 03:36:41.560 D/LogEng: Test:   algorithm: PBEWITHSHA1ANDDES
04-03 03:36:41.561 D/LogEng: Test:   algorithm: PBEWITHMD5ANDDES
04-03 03:36:41.564 D/LogEng: Test:   algorithm: PBEWITHSHA1ANDDES
04-03 03:36:41.565 D/LogEng: Test:   algorithm: DESEDE
04-03 03:36:41.574 D/LogEng: Test:   algorithm: DESEDEWRAP
04-03 03:36:41.587 D/LogEng: Test:   algorithm: DESEDE
04-03 03:36:41.603 D/LogEng: Test:   algorithm: DESEDE
04-03 03:36:41.607 D/LogEng: Test:   algorithm: DESEDE
04-03 03:36:41.611 D/LogEng: Test:   algorithm: PBEWITHSHAAND3-KEYTRIPLEDES-CBC
04-03 03:36:41.616 D/LogEng: Test:   algorithm: PBEWITHSHAAND2-KEYTRIPLEDES-CBC
04-03 03:36:41.624 D/LogEng: Test:   algorithm: PBEWITHSHAAND3-KEYTRIPLEDES-CBC
04-03 03:36:41.627 D/LogEng: Test:   algorithm: PBEWITHSHAAND2-KEYTRIPLEDES-CBC
04-03 03:36:41.635 D/LogEng: Test:   algorithm: PBEWITHMD5ANDRC2
04-03 03:36:41.637 D/LogEng: Test:   algorithm: PBEWITHSHA1ANDRC2
04-03 03:36:41.651 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITRC2-CBC
04-03 03:36:41.653 D/LogEng: Test:   algorithm: PBEWITHSHAAND40BITRC2-CBC
04-03 03:36:41.663 D/LogEng: Test:   algorithm: PBEWITHMD5ANDRC2
04-03 03:36:41.666 D/LogEng: Test:   algorithm: PBEWITHSHA1ANDRC2
04-03 03:36:41.675 D/LogEng: Test:   algorithm: PBEWITHSHAAND128BITRC2-CBC
04-03 03:36:41.679 D/LogEng: Test:   algorithm: PBEWITHSHAAND40BITRC2-CBC
04-03 03:36:41.681 D/LogEng: Test:   algorithm: PBEWITHSHAANDTWOFISH-CBC
04-03 03:36:41.685 D/LogEng: Test:   algorithm: PBEWITHSHAANDTWOFISH-CBC
04-03 03:36:41.698 D/LogEng: Test:   algorithm: X.509
04-03 03:36:41.707 D/LogEng: Test:   algorithm: DSA
04-03 03:36:41.711 D/LogEng: Test:   algorithm: DSA
04-03 03:36:41.714 D/LogEng: Test:   algorithm: DSA
04-03 03:36:41.721 D/LogEng: Test:   algorithm: DSA
04-03 03:36:41.730 D/LogEng: Test:   algorithm: SHA1withDSA
04-03 03:36:41.742 D/LogEng: Test:   algorithm: NONEWITHDSA
04-03 03:36:41.753 D/LogEng: Test:   algorithm: DH
04-03 03:36:41.774 D/LogEng: Test:   algorithm: DH
04-03 03:36:41.777 D/LogEng: Test:   algorithm: DH
04-03 03:36:41.784 D/LogEng: Test:   algorithm: DH
04-03 03:36:41.823 D/LogEng: Test:   algorithm: DH
04-03 03:36:41.961 D/LogEng: Test:   algorithm: ECDH
04-03 03:36:41.982 D/LogEng: Test:   algorithm: EC
04-03 03:36:42.009 D/LogEng: Test:   algorithm: EC
04-03 03:36:42.028 D/LogEng: Test:   algorithm: ECDSA
04-03 03:36:42.029 D/LogEng: Test:   algorithm: NONEwithECDSA
04-03 03:36:42.030 D/LogEng: Test:   algorithm: SHA256WITHECDSA
04-03 03:36:42.038 D/LogEng: Test:   algorithm: SHA384WITHECDSA
04-03 03:36:42.041 D/LogEng: Test:   algorithm: SHA512WITHECDSA
04-03 03:36:42.043 D/LogEng: Test:   algorithm: OAEP
04-03 03:36:42.054 D/LogEng: Test:   algorithm: RSA
04-03 03:36:42.055 D/LogEng: Test:   algorithm: RSA
04-03 03:36:42.057 D/LogEng: Test:   algorithm: RSA
04-03 03:36:42.058 D/LogEng: Test:   algorithm: MD5WITHRSA
04-03 03:36:42.059 D/LogEng: Test:   algorithm: SHA1WITHRSA
04-03 03:36:42.060 D/LogEng: Test:   algorithm: SHA256WITHRSA
04-03 03:36:42.061 D/LogEng: Test:   algorithm: SHA384WITHRSA
04-03 03:36:42.062 D/LogEng: Test:   algorithm: SHA512WITHRSA
04-03 03:36:42.063 D/LogEng: Test:   algorithm: BKS
04-03 03:36:42.068 D/LogEng: Test:   algorithm: BouncyCastle
04-03 03:36:42.069 D/LogEng: Test:   algorithm: PKCS12
04-03 03:36:42.105 D/LogEng: Test:   algorithm: PKIX
04-03 03:36:42.155 D/LogEng: Test:   algorithm: PKIX
04-03 03:36:42.163 D/LogEng: Test:   algorithm: Collection
04-03 03:36:42.172 D/LogEng: Test: provider: Crypto
04-03 03:36:42.190 D/LogEng: Test:   algorithm: SHA-1
04-03 03:36:42.203 D/LogEng: Test:   algorithm: SHA1PRNG
04-03 03:36:42.215 D/LogEng: Test:   algorithm: SHA1withDSA
04-03 03:36:42.219 D/LogEng: Test:   algorithm: DSA
04-03 03:36:42.226 D/LogEng: Test: provider: HarmonyJSSE
04-03 03:36:42.228 D/LogEng: Test:   algorithm: SSL
04-03 03:36:42.231 D/LogEng: Test:   algorithm: SSLv3
04-03 03:36:42.233 D/LogEng: Test:   algorithm: TLS
04-03 03:36:42.238 D/LogEng: Test:   algorithm: TLSv1
04-03 03:36:42.241 D/LogEng: Test:   algorithm: PKIX
04-03 03:36:42.244 D/LogEng: Test:   algorithm: PKIX
04-03 03:36:42.249 D/LogEng: Test:   algorithm: AndroidCAStore
04-03 03:36:42.270 D/LogEng: Test: provider: AndroidKeyStore
04-03 03:36:42.274 D/LogEng: Test:   algorithm: AndroidKeyStore
04-03 03:36:42.276 D/LogEng: Test:   algorithm: RSA

-----Original Message-----
From: Bernd Eckenfels [mailto:ecki@zusammenkunft.net]
Sent: Monday, 3 April 2017 11:20 AM
To: httpclient-users@hc.apache.org
Subject: Re: TLSv1.2 with cipher SHA256/384

It is a Java problem and you can try the new BouncyCastle JSSE Provider to get modern ciphers on older Android.

Gruss
Bernd
--
http://bernd.eckenfels.net
________________________________
From: Jacky.Lam <ja...@bbpos.com>
Sent: Monday, April 3, 2017 5:12:49 AM
To: httpclient-users@hc.apache.org
Subject: TLSv1.2 with cipher SHA256/384

Hi all,

I am absolutely dummy on SSL stuff. Please forgive me if I am confused with some basic concept.

Currently, I am developing an Android application using the legacy apache library to connect a HTTPS server which only accept TLSv1.2 and the cipher on this list (http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-security-policy-table.html)

I find my app working well on Android 5.0+, but not the one with 4.4.2. After searching the web, I know I need to explicitly enable TLSv1.2. But I find the cipher returned only contains those ended with SHA, but not SHA256/384 that TLSv1.2 required.

I tried to update the apache library to 4.4.1.1 (maintained by Marek Sebera). But I find the cipher is still the same.

Is this a OS problem? Can httpclient library override that?

Any suggestion or comment are welcomed. Thanks a lot.

BR,
Jacky
[http://www.bbpos.com/images/marketing/signature_banner.jpg]<http://bbpos.com>
[http://www.bbpos.com/images/marketing/signature_banner.jpg]<http://bbpos.com>

---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: TLSv1.2 with cipher SHA256/384

Posted by Bernd Eckenfels <ec...@zusammenkunft.net>.
It is a Java problem and you can try the new BouncyCastle JSSE Provider to get modern ciphers on older Android.

Gruss
Bernd
--
http://bernd.eckenfels.net
________________________________
From: Jacky.Lam <ja...@bbpos.com>
Sent: Monday, April 3, 2017 5:12:49 AM
To: httpclient-users@hc.apache.org
Subject: TLSv1.2 with cipher SHA256/384

Hi all,

I am absolutely dummy on SSL stuff. Please forgive me if I am confused with some basic concept.

Currently, I am developing an Android application using the legacy apache library to connect a HTTPS server which only accept TLSv1.2 and the cipher on this list (http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-security-policy-table.html)

I find my app working well on Android 5.0+, but not the one with 4.4.2. After searching the web, I know I need to explicitly enable TLSv1.2. But I find the cipher returned only contains those ended with SHA, but not SHA256/384 that TLSv1.2 required.

I tried to update the apache library to 4.4.1.1 (maintained by Marek Sebera). But I find the cipher is still the same.

Is this a OS problem? Can httpclient library override that?

Any suggestion or comment are welcomed. Thanks a lot.

BR,
Jacky
[http://www.bbpos.com/images/marketing/signature_banner.jpg]<http://bbpos.com>