Your IP : 216.73.216.95


Current Path : /var/www/storage2/vendor/braintree/braintree_php/lib/Braintree/
Upload File :
Current File : /var/www/storage2/vendor/braintree/braintree_php/lib/Braintree/SignatureService.php

<?php

class Braintree_SignatureService
{

    public function __construct($key, $digest)
    {
        $this->key = $key;
        $this->digest = $digest;
    }

    public function sign($payload)
    {
        return $this->hash($payload) . "|" . $payload;
    }

    public function hash($data)
    {
        return call_user_func($this->digest, $this->key, $data);
    }

}