Files
provision_sccp/lib/Crypto/Certificate.php
Diederik de Groot bc1b251248 Small fixes/cleanup
Signed-off-by: Diederik de Groot <dkgroot@talon.nl>
2020-04-07 12:54:51 +02:00

16 lines
246 B
PHP

<?php
declare(strict_types=1);
namespace PROVISION\Crypto;
class Certificate {
function __construct(string $file) {
$this->file = $file;
}
public function hashAsBase64(int $hashAlg) : string {
return "";
}
}
?>