proget-hq/apple-activation-lock

Library for generating Apple Activation Lock Bypass key and hash

0.2.0 2022-10-01 09:22 UTC

This package is auto-updated.

Last update: 2024-03-29 03:52:02 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