kopia lustrzana https://github.com/pixelfed/pixelfed
				
				
				
			
		
			
				
	
	
		
			37 wiersze
		
	
	
		
			644 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			37 wiersze
		
	
	
		
			644 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
<?php
 | 
						|
 | 
						|
namespace App\Util\HttpSignatures;
 | 
						|
 | 
						|
class HmacAlgorithm implements AlgorithmInterface
 | 
						|
{
 | 
						|
    /** @var string */
 | 
						|
    private $digestName;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $digestName
 | 
						|
     */
 | 
						|
    public function __construct($digestName)
 | 
						|
    {
 | 
						|
        $this->digestName = $digestName;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    public function name()
 | 
						|
    {
 | 
						|
        return sprintf('hmac-%s', $this->digestName);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $key
 | 
						|
     * @param string $data
 | 
						|
     *
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    public function sign($secret, $data)
 | 
						|
    {
 | 
						|
        return hash_hmac($this->digestName, $data, $secret, true);
 | 
						|
    }
 | 
						|
}
 |