Your IP : 216.73.217.95


Current Path : /var/www/www.indacotrentino.com/www/vendor/web-token/jwt-framework/src/Library/Core/
Upload File :
Current File : /var/www/www.indacotrentino.com/www/vendor/web-token/jwt-framework/src/Library/Core/Algorithm.php

<?php

declare(strict_types=1);

namespace Jose\Component\Core;

interface Algorithm
{
    /**
     * Returns the name of the algorithm.
     */
    public function name(): string;

    /**
     * Returns the key types suitable for this algorithm (e.g. "oct", "RSA"...).
     *
     * @return string[]
     */
    public function allowedKeyTypes(): array;
}