proget-hq / apple-activation-lock

Library for generating Apple Activation Lock Bypass key and hash

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Activation Lock

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

About

Library for generating Apple Activation Lock Bypass key and hash

License:MIT License


Languages

Language:PHP 100.0%