adduc / stitcher-password
Encrypts password for Stitcher API
Installs: 452
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Forks: 1
pkg:composer/adduc/stitcher-password
Requires (Dev)
- phpunit/phpunit: ^5.7
This package is auto-updated.
Last update: 2025-10-18 22:28:45 UTC
README
This library encrypts a password for use in the Sticher API.
Example
<?php
$deviceId = "abcdef";
$password = "qwerty";
$encrypter = new Adduc\Stitcher\Password();
$encrypted = $encrypter->encrypt($deviceId, $password);