PHP Classes

File: src/Mode.php

Recommend this page to a friend!
  Classes of Scott Arciszewski   HPKE PHP   src/Mode.php   Download  
File: src/Mode.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: 178 bytes
 

Contents

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

enum Mode: string
{
    case
Base = "\x00";
    case
PSK = "\x01";
    case
Auth = "\x02";
    case
AuthPSK = "\x03";
}