Exceptions
6 days ago
apache.php
6 days ago
apcu.php
6 days ago
array.php
6 days ago
bzip2.php
6 days ago
calendar.php
6 days ago
classobj.php
6 days ago
com.php
6 days ago
cubrid.php
6 days ago
curl.php
6 days ago
datetime.php
6 days ago
dir.php
6 days ago
eio.php
6 days ago
errorfunc.php
6 days ago
exec.php
6 days ago
fileinfo.php
6 days ago
filesystem.php
6 days ago
filter.php
6 days ago
fpm.php
6 days ago
ftp.php
6 days ago
funchand.php
6 days ago
functionsList.php
6 days ago
gmp.php
6 days ago
gnupg.php
6 days ago
hash.php
6 days ago
ibase.php
6 days ago
ibmDb2.php
6 days ago
iconv.php
6 days ago
image.php
6 days ago
imap.php
6 days ago
info.php
6 days ago
ingres-ii.php
6 days ago
inotify.php
6 days ago
json.php
6 days ago
ldap.php
6 days ago
libxml.php
6 days ago
lzf.php
6 days ago
mailparse.php
6 days ago
mbstring.php
6 days ago
misc.php
6 days ago
msql.php
6 days ago
mysql.php
6 days ago
mysqli.php
6 days ago
mysqlndMs.php
6 days ago
mysqlndQc.php
6 days ago
network.php
6 days ago
oci8.php
6 days ago
opcache.php
6 days ago
openssl.php
6 days ago
outcontrol.php
6 days ago
password.php
6 days ago
pcntl.php
6 days ago
pcre.php
6 days ago
pdf.php
6 days ago
pgsql.php
6 days ago
posix.php
6 days ago
ps.php
6 days ago
pspell.php
6 days ago
readline.php
6 days ago
rpminfo.php
6 days ago
rrd.php
6 days ago
sem.php
6 days ago
session.php
6 days ago
shmop.php
6 days ago
simplexml.php
6 days ago
sockets.php
6 days ago
sodium.php
6 days ago
solr.php
6 days ago
spl.php
6 days ago
sqlsrv.php
6 days ago
ssdeep.php
6 days ago
ssh2.php
6 days ago
stream.php
6 days ago
strings.php
6 days ago
swoole.php
6 days ago
uodbc.php
6 days ago
uopz.php
6 days ago
url.php
6 days ago
var.php
6 days ago
xdiff.php
6 days ago
xml.php
6 days ago
xmlrpc.php
6 days ago
yaml.php
6 days ago
yaz.php
6 days ago
zip.php
6 days ago
zlib.php
6 days ago
ssdeep.php
66 lines
| 1 | <?php |
| 2 | |
| 3 | namespace ProfilePressVendor\Safe; |
| 4 | |
| 5 | use ProfilePressVendor\Safe\Exceptions\SsdeepException; |
| 6 | /** |
| 7 | * Calculates the match score between signature1 |
| 8 | * and signature2 using |
| 9 | * context-triggered piecewise hashing, and returns the match |
| 10 | * score. |
| 11 | * |
| 12 | * @param string $signature1 The first fuzzy hash signature string. |
| 13 | * @param string $signature2 The second fuzzy hash signature string. |
| 14 | * @return int Returns an integer from 0 to 100 on success, FALSE otherwise. |
| 15 | * @throws SsdeepException |
| 16 | * |
| 17 | */ |
| 18 | function ssdeep_fuzzy_compare(string $signature1, string $signature2): int |
| 19 | { |
| 20 | error_clear_last(); |
| 21 | $result = \ssdeep_fuzzy_compare($signature1, $signature2); |
| 22 | if ($result === \false) { |
| 23 | throw SsdeepException::createFromPhpError(); |
| 24 | } |
| 25 | return $result; |
| 26 | } |
| 27 | /** |
| 28 | * ssdeep_fuzzy_hash_filename calculates the hash |
| 29 | * of the file specified by file_name using |
| 30 | * context-triggered piecewise |
| 31 | * hashing, and returns that hash. |
| 32 | * |
| 33 | * @param string $file_name The filename of the file to hash. |
| 34 | * @return string Returns a string on success, FALSE otherwise. |
| 35 | * @throws SsdeepException |
| 36 | * |
| 37 | */ |
| 38 | function ssdeep_fuzzy_hash_filename(string $file_name): string |
| 39 | { |
| 40 | error_clear_last(); |
| 41 | $result = \ssdeep_fuzzy_hash_filename($file_name); |
| 42 | if ($result === \false) { |
| 43 | throw SsdeepException::createFromPhpError(); |
| 44 | } |
| 45 | return $result; |
| 46 | } |
| 47 | /** |
| 48 | * ssdeep_fuzzy_hash calculates the hash of |
| 49 | * to_hash using |
| 50 | * context-triggered piecewise hashing, and returns that hash. |
| 51 | * |
| 52 | * @param string $to_hash The input string. |
| 53 | * @return string Returns a string on success, FALSE otherwise. |
| 54 | * @throws SsdeepException |
| 55 | * |
| 56 | */ |
| 57 | function ssdeep_fuzzy_hash(string $to_hash): string |
| 58 | { |
| 59 | error_clear_last(); |
| 60 | $result = \ssdeep_fuzzy_hash($to_hash); |
| 61 | if ($result === \false) { |
| 62 | throw SsdeepException::createFromPhpError(); |
| 63 | } |
| 64 | return $result; |
| 65 | } |
| 66 |