PHP Classes

File: src/Role.php

Recommend this page to a friend!
  Classes of Scott Arciszewski   HPKE PHP   src/Role.php   Download  
File: src/Role.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: HPKE PHP
Encrypt and decrypt data using hybrid public keys
Author: By
Last change:
Date: 8 days ago
Size: 129 bytes
 

Contents

Class file image Download
<?php
declare(strict_types=1);
namespace
ParagonIE\HPKE;

enum Role : string
{
    case
Sender = 'S';
    case
Receiver = 'R';
}