for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Sop\AESKW;
/**
* Implements AES key wrap with 128 bit key size.
*/
class AESKW128 extends Algorithm
{
*
* {@inheritdoc}
protected function _cipherMethod(): string
return "AES-128-ECB";
}
protected function _keySize(): int
return 16;