Keypop Calypso Crypto Asymmetric C++ API 0.2.0
Reference Calypso Crypto Asymmetric API for C++
PublicKey.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 {
21namespace cpp {
22
28class PublicKey {
29public:
33 virtual ~PublicKey() = default;
34};
35
36} /* namespace cpp */
37} /* namespace spi */
38} /* namespace certificate */
39} /* namespace asymmetric */
40} /* namespace crypto */
41} /* namespace calypso */
42} /* namespace keypop */