This also adds the MAC length constraint on imported HMAC keys. HMAC doesn't work without this constraint at the moment. Bug: 18088752 Change-Id: I8613f58f5d2a84df00bcf6179d13e30619440330
13 lines
289 B
Java
13 lines
289 B
Java
package android.security;
|
|
|
|
/**
|
|
* Indicates a communications error with keystore service.
|
|
*
|
|
* @hide
|
|
*/
|
|
public class KeyStoreConnectException extends CryptoOperationException {
|
|
public KeyStoreConnectException() {
|
|
super("Failed to communicate with keystore service");
|
|
}
|
|
}
|