← Back
Editing: HS256Truncated64.php
<?php declare(strict_types=1); namespace Cose\Algorithm\Mac; final class HS256Truncated64 extends Hmac { public const ID = 4; public static function create(): self { return new self(); } public static function identifier(): int { return self::ID; } protected function getHashAlgorithm(): string { return 'sha256'; } protected function getSignatureLength(): int { return 64; } }
Save File
Cancel