1 // Copyright 2016 The Android Open Source Project 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 #ifndef KEYSTORE_INCLUDE_KEYSTORE_KEYATTESTATIONAPPLICATIONID_H_ 16 #define KEYSTORE_INCLUDE_KEYSTORE_KEYATTESTATIONAPPLICATIONID_H_ 17 18 #include <memory> 19 #include <optional> 20 #include <vector> 21 22 #include <binder/Parcelable.h> 23 24 #include "KeyAttestationPackageInfo.h" 25 26 namespace android { 27 namespace security { 28 namespace keymaster { 29 30 class KeyAttestationApplicationId : public Parcelable { 31 public: 32 typedef SharedNullableIterator<const KeyAttestationPackageInfo, std::vector> 33 ConstKeyAttestationPackageInfoIterator; 34 typedef std::vector<std::optional<KeyAttestationPackageInfo>> PackageInfoVector; 35 KeyAttestationApplicationId(); 36 // Following c'tors are for initializing instances containing test data. 37 explicit KeyAttestationApplicationId(std::optional<KeyAttestationPackageInfo> package); 38 explicit KeyAttestationApplicationId(PackageInfoVector packages); 39 40 status_t writeToParcel(Parcel*) const override; 41 status_t readFromParcel(const Parcel* parcel) override; 42 pinfos_begin()43 ConstKeyAttestationPackageInfoIterator pinfos_begin() const { 44 return ConstKeyAttestationPackageInfoIterator(packageInfos_); 45 } pinfos_end()46 ConstKeyAttestationPackageInfoIterator pinfos_end() const { 47 return ConstKeyAttestationPackageInfoIterator(); 48 } 49 50 private: 51 std::shared_ptr<PackageInfoVector> packageInfos_; 52 }; 53 54 } // namespace keymaster 55 } // namespace security 56 } // namespace android 57 58 #endif // KEYSTORE_INCLUDE_KEYSTORE_KEYATTESTATIONAPPLICATIONID_H_ 59