I'm looking for an implementation/a library that handles X509
Certificates. I'm limited to JDK 1.1, so there is no way to use
java.security.cert.*.
Any help is appreciated!

Signature
Oliver
Nuno Martins - 19 Nov 2003 10:21 GMT
> I'm looking for an implementation/a library that handles X509
> Certificates. I'm limited to JDK 1.1, so there is no way to use
> java.security.cert.*.
>
> Any help is appreciated!
Hello,
You can see IAIK implementation.
Reguards,
Nuno Martins
Vincent Kirsch - 09 Dec 2003 13:13 GMT
> I'm looking for an implementation/a library that handles X509
> Certificates. I'm limited to JDK 1.1, so there is no way to use
> java.security.cert.*.
>
> Any help is appreciated!
Check this one out, it rules:
http://www.bouncycastle.org
I use it in an applet with JDK 1.1.8, andi t works just great. You can
choose to compile their sources or just use their compiled version
(which is what I do because trying to compile their stuff didn't work at
first and I had headache after a short time).
You could also check out
http://www.fawcette.com/javapro/2002_07/magazine/features/bboyter/
for more info and private key handling (if I remember well), and other
useful stuff.
Yours,
Vince