Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jgit-dev] git clone via secured connection

I was able to fix the problem. It was necessary to provide a compatible implementation of the JavaTM Cryptography Extension (JCE) for Jsch. Android uses a custom version of bouncycastle, so I used http://rtyley.github.com/spongycastle/. But be careful, theres a bug in his description! It has to be:

 Security.insertProviderAt(new BouncyCastleProvider(), 1);

 not
Security.addProvider(...


Thanks for your work, keep it up!

Back to the top