PHP Classes

File: src/SymmetricKey.php

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

Contents

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

use
ParagonIE\HPKE\Interfaces\SymmetricKeyInterface;
use
SensitiveParameter;

readonly class SymmetricKey implements SymmetricKeyInterface
{
    public function
__construct(
       
#[SensitiveParameter] public string $bytes
   
) {}

    public function
__debugInfo(): array
    {
        return [];
    }
}