Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
vendor /
google /
crc32 /
Delete
Unzip
Name
Size
Permission
Date
Action
.github
[ DIR ]
drwxr-sr-x
2023-05-21 12:05
ext
[ DIR ]
drwxr-sr-x
2023-05-21 12:05
src
[ DIR ]
drwxr-sr-x
2023-05-21 12:04
tests
[ DIR ]
drwxr-sr-x
2023-05-21 12:04
.gitignore
59
B
-rw-r--r--
2025-12-08 10:52
CONTRIBUTING.md
1.07
KB
-rw-r--r--
2025-12-08 10:52
LICENSE
11.09
KB
-rw-r--r--
2025-12-08 10:52
Makefile
1.87
KB
-rw-r--r--
2025-12-08 10:52
README.md
4.19
KB
-rw-r--r--
2025-12-08 10:52
composer.json
557
B
-rw-r--r--
2025-12-08 10:52
crc32_benchmark.php
4.45
KB
-rw-r--r--
2025-12-08 10:52
Save
Rename
## # Copyright 2019 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ## .PHONY : all clean benchmark test test_all lint ext ext_test COMPOSER ?= composer PHP_CS_FIXER ?= vendor/bin/php-cs-fixer PHP_UNIT ?= vendor/bin/phpunit PHP_BIN ?= $(shell php-config --prefix)/bin PHP ?= $(PHP_BIN)/php PHP_CONFIG ?= $(PHP_BIN)/php-config PHPIZE ?= $(PHP_BIN)/phpize all: lint test clean: -rm -r .php_cs.cache $(MAKE) -C ext clean vendor: composer.lock composer.lock: composer.json $(COMPOSER) update touch composer.lock lint: vendor $(PHP_CS_FIXER) fix --dry-run --diff src $(PHP_CS_FIXER) fix --dry-run --diff crc32_benchmark.php $(PHP_CS_FIXER) fix --dry-run --diff tests $(PHP_CS_FIXER) fix --dry-run --diff ext/tests benchmark: ext vendor $(PHP) -d extension=ext/modules/crc32c.so crc32_benchmark.php test: ext vendor $(PHP) -v $(PHP) -d extension=ext/modules/crc32c.so $(PHP_UNIT) tests/ # Test all the local versions of PHP test_all: for phpize in $$(ls $$(brew --prefix)/Cellar/php*/*/bin/phpize); do \ NO_INTERACTION=1 \ PHP_BIN=$$(dirname $$phpize) \ $(MAKE) clean test; \ done ext: ext/modules/crc32c.so ext_test: ext NO_INTERACTION=1 $(MAKE) -C ext test ext/modules/crc32c.so: ext/hash_crc32c.c ext/php_crc32c.c ext/php_crc32c.h cd ext && \ ./install_crc32c.sh && \ $(PHPIZE) && \ ./configure \ --with-php-config=$(PHP_CONFIG) && \ $(MAKE)