• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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     typedef std::vector<std::unique_ptr<KeyAttestationPackageInfo>> PackageInfoVector;
34     KeyAttestationApplicationId();
35     // Following c'tors are for initializing instances containing test data.
36     explicit KeyAttestationApplicationId(std::unique_ptr<KeyAttestationPackageInfo> package);
37     explicit KeyAttestationApplicationId(PackageInfoVector packages);
38 
39     status_t writeToParcel(Parcel*) const override;
40     status_t readFromParcel(const Parcel* parcel) override;
41 
pinfos_begin()42     ConstKeyAttestationPackageInfoIterator pinfos_begin() const {
43         return ConstKeyAttestationPackageInfoIterator(packageInfos_);
44     }
pinfos_end()45     ConstKeyAttestationPackageInfoIterator pinfos_end() const {
46         return ConstKeyAttestationPackageInfoIterator();
47     }
48 
49   private:
50     std::shared_ptr<std::vector<std::unique_ptr<KeyAttestationPackageInfo>>> packageInfos_;
51 };
52 
53 }  // namespace keymaster
54 }  // namespace security
55 }  // namespace android
56 
57 #endif  // KEYSTORE_INCLUDE_KEYSTORE_KEYATTESTATIONAPPLICATIONID_H_
58