composer update
This commit is contained in:
@@ -59,6 +59,8 @@ abstract class BaseSigner implements Signer
|
||||
/**
|
||||
* Creates a hash with the given data
|
||||
*
|
||||
* @internal
|
||||
*
|
||||
* @param string $payload
|
||||
* @param Key $key
|
||||
*
|
||||
@@ -67,7 +69,9 @@ abstract class BaseSigner implements Signer
|
||||
abstract public function createHash($payload, Key $key);
|
||||
|
||||
/**
|
||||
* Creates a hash with the given data
|
||||
* Performs the signature verification
|
||||
*
|
||||
* @internal
|
||||
*
|
||||
* @param string $expected
|
||||
* @param string $payload
|
||||
|
6
vendor/lcobucci/jwt/src/Signer/Ecdsa.php
vendored
6
vendor/lcobucci/jwt/src/Signer/Ecdsa.php
vendored
@@ -134,7 +134,9 @@ abstract class Ecdsa extends BaseSigner
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the lenght of signature parts
|
||||
* Returns the length of signature parts
|
||||
*
|
||||
* @internal
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
@@ -143,6 +145,8 @@ abstract class Ecdsa extends BaseSigner
|
||||
/**
|
||||
* Returns the name of algorithm to be used to create the signing hash
|
||||
*
|
||||
* @internal
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
abstract public function getAlgorithm();
|
||||
|
@@ -20,6 +20,8 @@ use Mdanter\Ecc\Serializer\PublicKey\PublicKeySerializerInterface;
|
||||
/**
|
||||
* Base class for ECDSA signers
|
||||
*
|
||||
* @internal
|
||||
*
|
||||
* @author Luís Otávio Cobucci Oblonczyk <lcobucci@gmail.com>
|
||||
* @since 3.0.4
|
||||
*/
|
||||
|
4
vendor/lcobucci/jwt/src/Signer/Hmac.php
vendored
4
vendor/lcobucci/jwt/src/Signer/Hmac.php
vendored
@@ -40,6 +40,8 @@ abstract class Hmac extends BaseSigner
|
||||
/**
|
||||
* PHP < 5.6 timing attack safe hash comparison
|
||||
*
|
||||
* @internal
|
||||
*
|
||||
* @param string $expected
|
||||
* @param string $generated
|
||||
*
|
||||
@@ -65,6 +67,8 @@ abstract class Hmac extends BaseSigner
|
||||
/**
|
||||
* Returns the algorithm name
|
||||
*
|
||||
* @internal
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
abstract public function getAlgorithm();
|
||||
|
2
vendor/lcobucci/jwt/src/Signer/Rsa.php
vendored
2
vendor/lcobucci/jwt/src/Signer/Rsa.php
vendored
@@ -72,6 +72,8 @@ abstract class Rsa extends BaseSigner
|
||||
/**
|
||||
* Returns the algorithm name
|
||||
*
|
||||
* @internal
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
abstract public function getAlgorithm();
|
||||
|
Reference in New Issue
Block a user