PHP Classes

File: src/Hash.php

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

Contents

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

enum Hash: string
{
    case
Sha256 = 'sha256';
    case
Sha384 = 'sha384';
    case
Sha512 = 'sha512';
}