PLCnext API Documentation 23.6.0.37
KeyPairType.hpp
1
2//
3// Copyright PHOENIX CONTACT Electronics GmbH
4//
6#pragma once
8#include "Arp/System/Core/Enum.hxx"
9
10namespace Arp { namespace System { namespace Commons { namespace Security
11{
12
13enum class KeyPairType : uint8
14{
15 RSA_2048 = 0,
16 RSA_4096 = 1,
17 RSA_TPM_2048 = 2,
18 Unknown = 255,
19};
20
22// global stream operators of enum KeyPairType for logging and parsing
23ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, KeyPairType value);
24ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, KeyPairType& value);
25
26}}}} // end of namespace Arp::System::Commons::Security
std::uint8_t uint8
The Arp unsigned integer type of 1 byte size.
Definition: PrimitiveTypes.hpp:28
@ System
System components used by the System, Device, Plc or Io domains.
Root namespace for the PLCnext API