How to verify a certificate validity on a Java Card?

Viewed 677

I know how to verify certificates with Java, but I am unaware of how to do it on a java card due to the restrictions of the java card APIs (no java.io/ other classes, only javacard APIs + Object + Throwable allowed).

I didn't find any javacard compatible library for certificates. Did I miss anything?

I need to verify that the certificate is signed by the CA as well as I need to verify the certificate's validity.

1 Answers
Related