• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2015 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package android.security.keymaster;
18 
19 import android.os.Parcel;
20 import android.os.Parcelable;
21 
22 /**
23  * Class for handling parceling the return values from keymaster's export operation.
24  * @hide
25  */
26 public class ExportResult implements Parcelable {
27     public final int resultCode;
28     public final byte[] exportData;
29 
30     public static final Parcelable.Creator<ExportResult> CREATOR = new
31             Parcelable.Creator<ExportResult>() {
32                 public ExportResult createFromParcel(Parcel in) {
33                     return new ExportResult(in);
34                 }
35 
36                 public ExportResult[] newArray(int length) {
37                     return new ExportResult[length];
38                 }
39             };
40 
ExportResult(Parcel in)41     protected ExportResult(Parcel in) {
42         resultCode = in.readInt();
43         exportData = in.createByteArray();
44     }
45 
46     @Override
describeContents()47     public int describeContents() {
48         return 0;
49     }
50 
51     @Override
writeToParcel(Parcel out, int flags)52     public void writeToParcel(Parcel out, int flags) {
53         out.writeInt(resultCode);
54         out.writeByteArray(exportData);
55     }
56 };
57