adduc / stitcher-password
Encrypts password for Stitcher API
1.0
2017-01-02 10:52 UTC
Requires (Dev)
- phpunit/phpunit: ^5.7
This package is auto-updated.
Last update: 2024-10-18 20:19:06 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);