Implement my own crypt API in Java Card
Posted: Tue Jan 05, 2016 3:09 am
We all know that Java Card API has crypto API. But if I want to implement/add my own crypt API in Java Card API, how can I do this ? I have looked thru the Java Card API document. Below is the segment of the overview.
I can not understand this well.
"Implementations of Cipher algorithms must extend this class and implement all the abstract methods. "
If I implement my own crypt API, how could I do this according to the Java Card API document?
public abstract class Cipher
extends Object
The Cipher class is the abstract base class for Cipher algorithms. Implementations of Cipher algorithms must extend this class and implement all the abstract methods.
...
I can not understand this well.
"Implementations of Cipher algorithms must extend this class and implement all the abstract methods. "
If I implement my own crypt API, how could I do this according to the Java Card API document?