Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/spomky-labs/pki-framework/src/ASN1/Feature/
Upload File :
Current File : //home/rtorresani/www/vendor/spomky-labs/pki-framework/src/ASN1/Feature/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;
}