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

1.0 2017-01-02 10:52 UTC

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);