adduc/stitcher-password

Encrypts password for Stitcher API

1.0 2017-01-02 10:52 UTC

This package is auto-updated.

Last update: 2024-03-18 19:00:04 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);