Jo

Results 55 comments of Jo

You are picking up Base64 from /system/framework/org.apache.http.legacy.boot.jar rather than commons-codec.1.11.jar - you'll need to find a way to exclude the first from your classpath

I've removed `keepasshttp` in 2.2-SNAPSHOT. JAXB still under review.

Thanks for your PR and raising this issue. I addressed it in this commit https://github.com/jorabin/KeePassJava2/commit/45d9eed5b4ce95f23b6a6282eb9fff2d52f76805

Thanks to @MadMaxLab for the pointers and proposed code. I ended up doing this: ```java public static SecureRandom random; static { try { random = SecureRandom.getInstance("SHA1PRNG"); } catch (NoSuchAlgorithmException e)...

Fixed in 2.2.1

This turned out to be a lot more complicated than I had expected. The basic idea has been to add a method to the underlying Database interface void save(StreamFormat streamFormat,...