Akamai {OPEN} EdgeGrid Authentication for PHP
  • Namespace
  • Class
  • Tree

Namespaces

  • Akamai
    • Open
      • EdgeGrid
        • Authentication
          • Exception
            • SignerException
        • Exception
          • HandlerException
        • Handler

Classes

  • Akamai\Open\EdgeGrid\Authentication
  • Akamai\Open\EdgeGrid\Authentication\Nonce
  • Akamai\Open\EdgeGrid\Authentication\Timestamp
  • Akamai\Open\EdgeGrid\Cli
  • Akamai\Open\EdgeGrid\Client
  • Akamai\Open\EdgeGrid\Handler\Authentication
  • Akamai\Open\EdgeGrid\Handler\Debug
  • Akamai\Open\EdgeGrid\Handler\Verbose

Exceptions

  • Akamai\Open\EdgeGrid\Authentication\Exception
  • Akamai\Open\EdgeGrid\Authentication\Exception\ConfigException
  • Akamai\Open\EdgeGrid\Authentication\Exception\SignerException
  • Akamai\Open\EdgeGrid\Authentication\Exception\SignerException\InvalidSignDataException
  • Akamai\Open\EdgeGrid\Exception
  • Akamai\Open\EdgeGrid\Exception\HandlerException
  • Akamai\Open\EdgeGrid\Exception\HandlerException\IOException
 1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 
<?php
/**
 * Akamai {OPEN} EdgeGrid Auth for PHP
 *
 * @author Davey Shafik <dshafik@akamai.com>
 * @copyright Copyright 2016 Akamai Technologies, Inc. All rights reserved.
 * @license Apache 2.0
 * @link https://github.com/akamai-open/AkamaiOPEN-edgegrid-php
 * @link https://developer.akamai.com
 * @link https://developer.akamai.com/introduction/Client_Auth.html
 */
namespace Akamai\Open\EdgeGrid\Authentication;

/**
 * Generates a random nonce for each request
 *
 * @package Akamai\Open\EdgeGrid\Authentication
 */
class Nonce
{
    /**
     * @var string The current random function to use
     */
    protected $function;

    /**
     * Constructor
     *
     * Determines if PHP 7's random_bytes() can be used
     */
    public function __construct()
    {
        $this->function = 'openssl_random_pseudo_bytes';

        // Use PHP 7's random_bytes()
        if (function_exists('random_bytes')) {
            $this->function = 'random_bytes';
        }
    }

    /**
     * Return the nonce when cast to string
     *
     * @return string Returns the nonce
     */
    public function __toString()
    {
        // because ($this->function)() won't work til PHP 7 :(
        $function = $this->function;
        return bin2hex($function(16));
    }
}
Akamai {OPEN} EdgeGrid Authentication for PHP API documentation generated by ApiGen