PLCnext API Documentation 25.0.2.69
IdentityValidationError.hpp
1
2//
3// Copyright Phoenix Contact GmbH & Co. KG
4//
6#pragma once
8#include "Arp/Base/Core/Enum.hxx"
9
10// DO NOT MODIFY THIS FILE, THIS FILE IS AUTOGENERATED
11
13{
14
22{
26 None = 0,
27
31 InternalError = 256,
32
37
42
47
52
57};
58
60// global stream operators of enum IdentityValidationError for logging and parsing
61ARP_EXPORT std::ostream& operator<<(std::ostream& os, IdentityValidationError value);
62ARP_EXPORT std::istream& operator>>(std::istream& is, IdentityValidationError& value);
63
64} // end of namespace Arp::System::Commons::Services::Security
65
67// template specialization of IdentityValidationError formatter
68template<> struct fmt::formatter<Arp::System::Commons::Services::Security::IdentityValidationError> : public fmt::ostream_formatter {};
std::uint16_t uint16
The Arp unsigned integer type of 2 byte size.
Definition: PrimitiveTypes.hpp:29
Namespace for security related services
IdentityValidationError
Numeric indicator about the success or failure of the validation of a device identity.
Definition: IdentityValidationError.hpp:22
@ ArgumentExceptionUnknownIdentity
The provided identity store is unknown.
@ VerificationFailureKeyMismatch
The device has no matching key for the identity. It is not trustworthy.
@ VerificationFailureMissingCertificate
The identity to validate does not have a certificate.
@ VerificationFailureCertificateInvalid
The certificate of the identity could not be validated. It is not trustworthy.
@ ArgumentExceptionTrustedCerts
The set of trusted certificates was empty or contained an invalid format.
Root namespace for the PLCnext API