name : Encodable.php
<?php

declare(strict_types=1);

namespace SpomkyLabs\Pki\ASN1\Feature;

/**
 * Interface for classes that may be encoded to DER.
 */
interface Encodable
{
    /**
     * Encode object to DER.
     */
    public function toDER(): string;
}

© 2025 Cubjrnet7