Files
provision_sccp/lib/Crypto/Certificate.php
Diederik de Groot 5064cb3e36 Adopted composer autoload way
Split up classes into separate way, to allow autoloader to do it's work

Signed-off-by: Diederik de Groot <ddegroot@talon.nl>
2020-03-22 10:15:31 +01:00

15 lines
245 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 "";
}
}
?>