cryptal  latest
Cryptography Abstraction Layer
ImplementationTypeEnum.php
1 <?php
2 
3 namespace fpoirotte\Cryptal;
4 
6 
7 final class ImplementationTypeEnum implements \Serializable
8 {
9  use EnumTrait;
10 
12  private $TYPE_ASSEMBLY;
13 
15  private $TYPE_COMPILED;
16 
18  private $TYPE_USERLAND;
19 }
$TYPE_ASSEMBLY
The implementation uses assembly/highly-optimized code.
$TYPE_COMPILED
The implementation uses compiled code (eg. C/C++).
$TYPE_USERLAND
The implementation is based on userland PHP code.