Keypop Calypso Crypto Asymmetric C++ API 0.2.0
Reference Calypso Crypto Asymmetric API for C++
CardPublicKeySpi.hpp
Go to the documentation of this file.
1/**************************************************************************************************
2 * Copyright (c) 2024 Calypso Networks Association https://calypsonet.org/ *
3 * *
4 * This program and the accompanying materials are made available under the *
5 * terms of the MIT License which is available at https://opensource.org/licenses/MIT. *
6 * *
7 * SPDX-License-Identifier: MIT *
8 **************************************************************************************************/
9
10#pragma once
11
12#include <cstdint>
13#include <vector>
14
15namespace keypop {
16namespace calypso {
17namespace crypto {
18namespace asymmetric {
19namespace certificate {
20namespace spi {
21
28public:
35 virtual const std::vector<uint8_t>& getRawValue() const = 0;
36};
37
38} /* namespace spi */
39} /* namespace certificate */
40} /* namespace asymmetric */
41} /* namespace crypto */
42} /* namespace calypso */
43} /* namespace keypop */
virtual const std::vector< uint8_t > & getRawValue() const =0