proget-hq / apple-activation-lock
Library for generating Apple Activation Lock Bypass key and hash
Installs: 9 762
Dependents: 0
Suggesters: 0
Security: 0
Stars: 43
Watchers: 6
Forks: 17
Open Issues: 1
Requires
- php: >=7.4
- ext-openssl: *
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.11
- phpstan/phpstan: ^1.8.6
- phpstan/phpstan-phpunit: ^1.1
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2024-11-06 19:51:54 UTC
README
Library for generating Apple Activation Lock Bypass key and hash
Install
composer require proget-hq/apple-activation-lock
Usage
require_once __DIR__.'/vendor/autoload.php'; use \Proget\Apple\ActivationLock\ActivationLockHashGenerator; use \Proget\Apple\ActivationLock\ActivationLockKeyGenerator; use \Proget\Apple\ActivationLock\ActivationLockRandomBytesGenerator; $bytes = (new ActivationLockRandomBytesGenerator())->generate(); $hash = (new ActivationLockHashGenerator())->generate($bytes); $key = (new ActivationLockKeyGenerator())->generate($bytes);
License
MIT