views:

235

answers:

1

Hi, Can anybody point me to an example of verifying a X.509 certificate with Bouncy Castle under Java ME? I can see how to easily do this in Java SE code with java.security.cert.Certificate.verify(), but I could not find an equivalent method in the lightweight BC API.

Thanks in advance!

Cheers Dino

A: 

You might want to use com.sun.midp.ssl.X509Certificate instead.

hudolejev