159 lines
5.0 KiB
Java
159 lines
5.0 KiB
Java
/*
|
|
* Copyright 2019 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package android.security.identity;
|
|
|
|
import android.annotation.NonNull;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Collection;
|
|
import java.util.Collections;
|
|
import java.util.LinkedHashMap;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* An object that holds personalization data.
|
|
*
|
|
* This data includes access control profiles and a set of data entries and values, grouped by
|
|
* namespace.
|
|
*
|
|
* This is used to provision data into a {@link WritableIdentityCredential}.
|
|
*
|
|
* @see WritableIdentityCredential#personalize
|
|
*/
|
|
public class PersonalizationData {
|
|
|
|
private PersonalizationData() {
|
|
}
|
|
|
|
private ArrayList<AccessControlProfile> mProfiles = new ArrayList<>();
|
|
|
|
private LinkedHashMap<String, NamespaceData> mNamespaces = new LinkedHashMap<>();
|
|
|
|
Collection<AccessControlProfile> getAccessControlProfiles() {
|
|
return Collections.unmodifiableCollection(mProfiles);
|
|
}
|
|
|
|
Collection<String> getNamespaces() {
|
|
return Collections.unmodifiableCollection(mNamespaces.keySet());
|
|
}
|
|
|
|
NamespaceData getNamespaceData(String namespace) {
|
|
return mNamespaces.get(namespace);
|
|
}
|
|
|
|
static class NamespaceData {
|
|
|
|
private String mNamespace;
|
|
private LinkedHashMap<String, EntryData> mEntries = new LinkedHashMap<>();
|
|
|
|
private NamespaceData(String namespace) {
|
|
this.mNamespace = namespace;
|
|
}
|
|
|
|
String getNamespaceName() {
|
|
return mNamespace;
|
|
}
|
|
|
|
Collection<String> getEntryNames() {
|
|
return Collections.unmodifiableCollection(mEntries.keySet());
|
|
}
|
|
|
|
Collection<AccessControlProfileId> getAccessControlProfileIds(String name) {
|
|
EntryData value = mEntries.get(name);
|
|
if (value != null) {
|
|
return value.mAccessControlProfileIds;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
byte[] getEntryValue(String name) {
|
|
EntryData value = mEntries.get(name);
|
|
if (value != null) {
|
|
return value.mValue;
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
|
|
private static class EntryData {
|
|
byte[] mValue;
|
|
Collection<AccessControlProfileId> mAccessControlProfileIds;
|
|
|
|
EntryData(byte[] value, Collection<AccessControlProfileId> accessControlProfileIds) {
|
|
this.mValue = value;
|
|
this.mAccessControlProfileIds = accessControlProfileIds;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* A builder for {@link PersonalizationData}.
|
|
*/
|
|
public static final class Builder {
|
|
private PersonalizationData mData;
|
|
|
|
/**
|
|
* Creates a new builder for a given namespace.
|
|
*/
|
|
public Builder() {
|
|
this.mData = new PersonalizationData();
|
|
}
|
|
|
|
/**
|
|
* Adds a new entry to the builder.
|
|
*
|
|
* @param namespace The namespace to use, e.g. {@code org.iso.18013-5.2019}.
|
|
* @param name The name of the entry, e.g. {@code height}.
|
|
* @param accessControlProfileIds A set of access control profiles to use.
|
|
* @param value The value to add, in CBOR encoding.
|
|
* @return The builder.
|
|
*/
|
|
public @NonNull Builder putEntry(@NonNull String namespace, @NonNull String name,
|
|
@NonNull Collection<AccessControlProfileId> accessControlProfileIds,
|
|
@NonNull byte[] value) {
|
|
NamespaceData namespaceData = mData.mNamespaces.get(namespace);
|
|
if (namespaceData == null) {
|
|
namespaceData = new NamespaceData(namespace);
|
|
mData.mNamespaces.put(namespace, namespaceData);
|
|
}
|
|
// TODO: validate/verify that value is proper CBOR.
|
|
namespaceData.mEntries.put(name, new EntryData(value, accessControlProfileIds));
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Adds a new access control profile to the builder.
|
|
*
|
|
* @param profile The access control profile.
|
|
* @return The builder.
|
|
*/
|
|
public @NonNull Builder addAccessControlProfile(@NonNull AccessControlProfile profile) {
|
|
mData.mProfiles.add(profile);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Creates a new {@link PersonalizationData} with all the entries added to the builder.
|
|
*
|
|
* @return A new {@link PersonalizationData} instance.
|
|
*/
|
|
public @NonNull PersonalizationData build() {
|
|
return mData;
|
|
}
|
|
}
|
|
|
|
}
|