1<?php
2
3declare(strict_types=1);
4
5/*
6 * The MIT License (MIT)
7 *
8 * Copyright (c) 2014-2019 Spomky-Labs
9 *
10 * This software may be modified and distributed under the terms
11 * of the MIT license.  See the LICENSE file for details.
12 */
13
14namespace Cose\Algorithm\Signature\RSA;
15
16final class RS256 extends RSA
17{
18    public const ID = -257;
19
20    public static function identifier(): int
21    {
22        return self::ID;
23    }
24
25    protected function getHashAlgorithm(): int
26    {
27        return OPENSSL_ALGO_SHA256;
28    }
29}
30