PHP Classes

File: src/Encryption/Cipher/ID/Idaes256wrap.php.txt

Recommend this page to a friend!
  Classes of John Conde   PHP Simple Encryption and Decryption   src/Encryption/Cipher/ID/Idaes256wrap.php.txt   Download  
File: src/Encryption/Cipher/ID/Idaes256wrap.php.txt
Role: Documentation
Content type: text/plain
Description: Documentation
Class: PHP Simple Encryption and Decryption
Encrypt and decrypt data
Author: By
Last change: Made cipher classes final
Date: 3 years ago
Size: 343 bytes
 

Contents

Class file image Download
<?php declare(strict_types=1); namespace Encryption\Cipher\ID; use Encryption\ACipher; use Encryption\decrypt; use Encryption\encryptWithPadding; final class Idaes256wrap extends ACipher { public const BLOCK_SIZE = 8; public const IV_LENGTH = 8; public const CIPHER = 'ID-AES256-WRAP'; use encryptWithPadding, decrypt; }