proget-hq/apple-activation-lock

Library for generating Apple Activation Lock Bypass key and hash

Installs: 14 041

Dependents: 0

Suggesters: 0

Security: 0

Stars: 58

Watchers: 6

Forks: 20

Open Issues: 2

pkg:composer/proget-hq/apple-activation-lock

0.2.0 2022-10-01 09:22 UTC

This package is auto-updated.

Last update: 2025-10-06 21:41:21 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