MemorizingTrustManager icon indicating copy to clipboard operation
MemorizingTrustManager copied to clipboard

A "plugin" for Android Java to allow asking the user about SSL certificates

Results 21 MemorizingTrustManager issues
Sort by recently updated
recently updated
newest added

This will continue to show lint warnings but will not abort the build Fixes #68

Congratulations on long-awaited updates! Now I see the following issue: ``` > Lint found errors in the project; aborting build. Fix the issues identified by lint, or add the following...

There is a implicit conversion from array to a string in https://github.com/ge0rg/MemorizingTrustManager/blob/master/src/de/duenndns/ssl/MemorizingTrustManager.java#L413, which causes the hashCode to be printed and I'm not sure if that information is useful.

Hi, with this changes the application can be easily published to bintray/jcenter with a call of gradlew assemble uploadBintray. This will make it much easier to integrate this library in...

At the moment, when several threads (for instance, synchronization workers called by Android) with MTM simultaneously access a host with unknown certificate, multiple decision activities will pop up, so the...

Hi, I am trying to integrate MTM in an Android Studio project with gradle. Can you assist me in integrating it? I added "android.library.reference.1=submodules/MemorizingTrustManager" to gradle.properties (since I don't have...

Hello, We have seen increasing problems with MTM in DAVdroid. Honestly, I don't know how to start debugging (except from dissecting the whole code line for line). The problem is...

There might be environments where the key store file might be shared either - by multiple MTMs in multiple processes, and/or - by MTM and other libraries. In both cases,...

It would be much more comfortable for users of the library if they could just add it as a maven dependency instead of integrating it at the source level. For...

Something like: ``` public boolean checkCertificate(X509Certificate certificate, String hostname) { try { if (certificate.equals(appKeyStore.getCertificate(hostname.toLowerCase(Locale.US)))) { return true; } return interactHostname(certificate, hostname); } catch (KeyStoreException e) { LOGGER.error("error while checking certificate",...