Searched defs:KeymasterBlob (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/security/keymaster/
H A DKeymasterBlob.java25 public class KeymasterBlob implements Parcelable { class in inherits:Parcelable
28 public KeymasterBlob(byte[] blob) { method in class:KeymasterBlob
31 public static final Parcelable.Creator<KeymasterBlob> CREATOR = new
32 Parcelable.Creator<KeymasterBlob>() {
33 public KeymasterBlob createFromParcel(Parcel in) {
34 return new KeymasterBlob(in);
37 public KeymasterBlob[] newArray(int length) {
38 return new KeymasterBlob[length];
42 protected KeymasterBlob(Parcel in) { method in class:KeymasterBlob

Completed in 439 milliseconds