-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #245 from divegeek/Javacard_KeyMint_200_master
Rebased from Javacard key mint 200 master
- Loading branch information
Showing
14 changed files
with
674 additions
and
791 deletions.
There are no files selected for viewing
645 changes: 300 additions & 345 deletions
645
Applet/AndroidSEProvider/src/com/android/javacard/keymaster/KMAttestationCertImpl.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 2 additions & 15 deletions
17
Applet/AndroidSEProviderLib/src/com/android/javacard/seprovider/KMKeyObject.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,6 @@ | ||
package com.android.javacard.seprovider; | ||
|
||
public class KMKeyObject { | ||
private byte algorithm; | ||
private Object keyObjectInst; | ||
|
||
public void setKeyObjectData(byte alg, Object keyObject) { | ||
algorithm = alg; | ||
keyObjectInst = keyObject; | ||
} | ||
|
||
public byte getAlgorithm() { | ||
return this.algorithm; | ||
} | ||
|
||
public Object getKeyObjectInstance() { | ||
return keyObjectInst; | ||
} | ||
public byte algorithm; | ||
public Object keyObjectInst; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.