PHP Classes

File: src/TrustStore/TrustPolicy.php

Recommend this page to a friend!
  Packages of Gianfrancesco Aurecchia   OPC UA Client   src/TrustStore/TrustPolicy.php   Download  
File: src/TrustStore/TrustPolicy.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: OPC UA Client
Control devices that support the OPC UA protocol
Author: By
Last change:
Date: 16 days ago
Size: 304 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
PhpOpcua\Client\TrustStore;

/**
 * Defines the level of certificate validation performed by the trust store.
 */
enum TrustPolicy: string
{
    case
Fingerprint = 'fingerprint';

    case
FingerprintAndExpiry = 'fingerprint+expiry';

    case
Full = 'full';
}