/*
* Copyright (c) 2024 ETH Zürich, IT Services
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
using System.Collections.Generic;
using System.Security.Cryptography.X509Certificates;
namespace SafeExamBrowser.Configuration.Contracts.Cryptography
{
///
/// Provides functionality related to certificates installed on the computer.
///
public interface ICertificateStore
{
///
/// Attempts to retrieve the certificate which matches the specified public key hash value.
/// Returns true if the certificate was found, otherwise false.
///
bool TryGetCertificateWith(byte[] keyHash, out X509Certificate2 certificate);
///
/// Extracts all identity certificates from the given configuration data and installs them on the computer.
///
void ExtractAndImportIdentities(IDictionary data);
}
}