<?php

declare(strict_types=1);

namespace Cose\Algorithm;

interface Algorithm
{
    public static function identifier(): int;
}
