Home | History | Annotate | Download | only in km_openssl
      1 /*
      2 **
      3 ** Copyright 2017, The Android Open Source Project
      4 **
      5 ** Licensed under the Apache License, Version 2.0 (the "License");
      6 ** you may not use this file except in compliance with the License.
      7 ** You may obtain a copy of the License at
      8 **
      9 **     http://www.apache.org/licenses/LICENSE-2.0
     10 **
     11 ** Unless required by applicable law or agreed to in writing, software
     12 ** distributed under the License is distributed on an "AS IS" BASIS,
     13 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     14 ** See the License for the specific language governing permissions and
     15 ** limitations under the License.
     16 */
     17 
     18 #ifndef KM_OPENSSL_ATTESTATION_UTILS_H_
     19 #define KM_OPENSSL_ATTESTATION_UTILS_H_
     20 
     21 #include <hardware/keymaster_defs.h>
     22 #include <keymaster/android_keymaster_utils.h>
     23 
     24 #include <openssl/x509v3.h>
     25 
     26 #include "openssl_utils.h"
     27 
     28 namespace keymaster {
     29 
     30 class AuthorizationSet;
     31 class AttestationRecordContext;
     32 class AsymmetricKey;
     33 
     34 
     35 keymaster_error_t generate_attestation(const AsymmetricKey& key,
     36         const AuthorizationSet& attest_params, const keymaster_cert_chain_t& attestation_chain,
     37         const keymaster_key_blob_t& attestation_signing_key,
     38         const AttestationRecordContext& context, CertChainPtr* cert_chain_out);
     39 
     40 } // namespace keymaster
     41 
     42 #endif  // KM_OPENSSL_ATTESTATION_UTILS_H_
     43