blob: 0446d7a6ebb6b89ff6ea8ab6d10322de49786ec8 [file] [log] [blame]
/*
*
* Copyright (c) 2022 Project CHIP Authors
*
* 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.
*/
#pragma once
#include <credentials/CHIPCert.h>
#include <credentials/attestation_verifier/DeviceAttestationVerifier.h>
#include <array>
#include <vector>
namespace chip {
namespace Credentials {
/**
* @brief Load all X.509 DER certificates in a given path.
*
* Silently ignores non-X.509 files and X.509 files without a subject key identifier.
*
* Returns an empty vector if no files are found or unrecoverable errors arise.
*
* @param trustStorePath - path from where to search for certificates.
* @return a vector of certificate DER data
*/
std::vector<std::vector<uint8_t>> LoadAllX509DerCerts(const char * trustStorePath);
class FileAttestationTrustStore : public AttestationTrustStore
{
public:
FileAttestationTrustStore(const char * paaTrustStorePath = nullptr);
~FileAttestationTrustStore();
CHIP_ERROR GetProductAttestationAuthorityCert(const ByteSpan & skid, MutableByteSpan & outPaaDerBuffer) const override;
bool IsInitialized() const { return mIsInitialized; }
size_t paaCount() const { return mPAADerCerts.size(); };
protected:
std::vector<std::vector<uint8_t>> mPAADerCerts;
private:
bool mIsInitialized = false;
void Cleanup();
};
} // namespace Credentials
} // namespace chip