leftypol/inc/functions/hide.php

7 lines
146 B
PHP
Raw Normal View History

<?php
namespace Vichan\Functions\Hide;
function secure_hash(string $data, bool $binary): string {
return \hash('tiger160,3', $data, $binary);
}