This currently supports AES and HMAC with SHA-256. Bug: 18088752 Change-Id: Ife55438cf4129b895295681bb35091cd37eb73fb
14 lines
204 B
Java
14 lines
204 B
Java
package android.security;
|
|
|
|
/**
|
|
* Keymaster exception.
|
|
*
|
|
* @hide
|
|
*/
|
|
public class KeymasterException extends Exception {
|
|
|
|
public KeymasterException(String message) {
|
|
super(message);
|
|
}
|
|
}
|