blob: 0659a22dc09008c34cfd1e4ea04064b52f044bdd [file] [log] [blame]
Alex Klyubin8effa362015-06-24 16:06:55 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
Chad Brubaker5e73c0e2015-03-21 22:46:43 -07003 *
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 *
Alex Klyubin8effa362015-06-24 16:06:55 -07008 * http://www.apache.org/licenses/LICENSE-2.0
Chad Brubaker5e73c0e2015-03-21 22:46:43 -07009 *
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
17package android.security.keymaster;
18
Mathew Inwoode420f8b2018-08-16 18:40:47 +010019import android.annotation.UnsupportedAppUsage;
Chad Brubaker5e73c0e2015-03-21 22:46:43 -070020import android.os.Parcel;
21import android.os.Parcelable;
22
23/**
24 * @hide
25 */
26public class KeymasterBlob implements Parcelable {
27 public byte[] blob;
28
29 public KeymasterBlob(byte[] blob) {
30 this.blob = blob;
31 }
Mathew Inwoode420f8b2018-08-16 18:40:47 +010032 @UnsupportedAppUsage
Chad Brubaker5e73c0e2015-03-21 22:46:43 -070033 public static final Parcelable.Creator<KeymasterBlob> CREATOR = new
34 Parcelable.Creator<KeymasterBlob>() {
35 public KeymasterBlob createFromParcel(Parcel in) {
36 return new KeymasterBlob(in);
37 }
38
39 public KeymasterBlob[] newArray(int length) {
40 return new KeymasterBlob[length];
41 }
42 };
43
44 protected KeymasterBlob(Parcel in) {
45 blob = in.createByteArray();
46 }
47
48 @Override
49 public int describeContents() {
50 return 0;
51 }
52
53 @Override
54 public void writeToParcel(Parcel out, int flags) {
55 out.writeByteArray(blob);
56 }
57}