Recommend this page to a friend! |
Classes of John Conde | > | PHP Simple Encryption and Decryption | > | src/Encryption/Cipher/ID/Idsmimealgcms3deswrap.php.txt | > | Download |
|
![]() |
<?php declare(strict_types=1); namespace Encryption\Cipher\ID; use Encryption\ACipher; use Encryption\decrypt; use Encryption\encryptWithPadding; final class Idsmimealgcms3deswrap extends ACipher { public const BLOCK_SIZE = 8; public const IV_LENGTH = 0; public const CIPHER = 'ID-SMIME-ALG-CMS3DESWRAP'; use encryptWithPadding, decrypt; } |