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

/frameworks/base/core/java/android/security/keystore/recovery/
H A DRecoveryCertPath.java36 public final class RecoveryCertPath implements Parcelable { class in inherits:Parcelable
48 public static @NonNull RecoveryCertPath createRecoveryCertPath(@NonNull CertPath certPath)
52 return new RecoveryCertPath(encodeCertPath(certPath));
69 private RecoveryCertPath(@NonNull byte[] encodedCertPath) { method in class:RecoveryCertPath
73 private RecoveryCertPath(Parcel in) { method in class:RecoveryCertPath
77 public static final Parcelable.Creator<RecoveryCertPath> CREATOR =
78 new Parcelable.Creator<RecoveryCertPath>() {
79 public RecoveryCertPath createFromParcel(Parcel in) {
80 return new RecoveryCertPath(in);
83 public RecoveryCertPath[] newArra
[all...]

Completed in 18 milliseconds