cleaned up composer

This commit is contained in:
2026-02-18 20:17:19 -06:00
parent 3c94239da7
commit 3e153679bd
5952 changed files with 271417 additions and 203117 deletions
@@ -0,0 +1,32 @@
<?php
declare(strict_types=1);
namespace Jose\Component\Encryption\Algorithm\KeyEncryption;
use AESKW\A256KW as Wrapper;
use Override;
final readonly class ECDHSSA256KW extends ECDHSSAESKW
{
/**
* NOTE: the return name was modified
*/
#[Override]
public function name(): string
{
return 'ECDH-SS+A256KW';
}
#[Override]
protected function getWrapper(): Wrapper
{
return new Wrapper();
}
#[Override]
protected function getKeyLength(): int
{
return 256;
}
}