1. Go to this page and download the library: Download fabiang/sasl library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
fabiang / sasl example snippets
use Fabiang\Sasl\Sasl;
$factory = new Sasl;
$mechanism = $factory->factory('SCRAM-SHA-1', array(
'authcid' => 'username',
'secret' => 'password',
'authzid' => 'authzid', // optional. Username to proxy as
'service' => 'servicename', // optional. Name of the service
'hostname' => 'hostname', // optional. Hostname of the service
));
$response = $mechanism->createResponse();
$mechanism = $factory->factory('SCRAM-SHA-1', array(
'authcid' => 'username',
'secret' => 'password',
'authzid' => 'authzid', // optional. Username to proxy as
'service' => 'servicename', // optional. Name of the service
'hostname' => 'hostname', // optional. Hostname of the service
'downgrade_protection' => array( // optional. When `null` downgrade protection string from server won't be validated
'allowed_mechanisms' => array('SCRAM-SHA-1-PLUS', 'SCRAM-SHA-1'), // allowed mechanisms by the server
'allowed_channel_bindings' => array('tls-unique', 'tls-exporter', 'tls-server-end-point'), // allowed channel-binding types by the server
),
));