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 <vector> 20 21 #include <binder/Parcelable.h> 22 23 #include "KeyAttestationPackageInfo.h" 24 25 namespace android { 26 namespace security { 27 namespace keymaster { 28 29 class KeyAttestationApplicationId : public Parcelable { 30 public: 31 typedef SharedNullableIterator<const KeyAttestationPackageInfo, std::vector> 32 ConstKeyAttestationPackageInfoIterator; 33 KeyAttestationApplicationId(); 34 KeyAttestationApplicationId(std::unique_ptr<KeyAttestationPackageInfo> package); 35 36 status_t writeToParcel(Parcel*) const override; 37 status_t readFromParcel(const Parcel* parcel) override; 38 pinfos_begin()39 ConstKeyAttestationPackageInfoIterator pinfos_begin() const { 40 return ConstKeyAttestationPackageInfoIterator(packageInfos_); 41 } pinfos_end()42 ConstKeyAttestationPackageInfoIterator pinfos_end() const { 43 return ConstKeyAttestationPackageInfoIterator(); 44 } 45 46 private: 47 std::shared_ptr<std::vector<std::unique_ptr<KeyAttestationPackageInfo>>> packageInfos_; 48 }; 49 50 } // namespace keymaster 51 } // namespace security 52 } // namespace android 53 54 #endif // KEYSTORE_INCLUDE_KEYSTORE_KEYATTESTATIONAPPLICATIONID_H_ 55