aboutsummaryrefslogtreecommitdiff
path: root/ready_se/google/keymint/KM200/Applet/AndroidSEProviderLib/src/com/android/javacard/seprovider/KMKeyObject.java
blob: a37da085117dcdf839aa7f83e99f4c356c444eba (plain)
1
2
3
4
5
6
7
8
9
10
package com.android.javacard.seprovider;

/**
 * This class holds the KeyObject and its associated algorithm value. Each KMKeyObject is tied to
 * one of the crypto operations.
 */
public class KMKeyObject {
  public byte algorithm;
  public Object keyObjectInst;
}