mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-18 11:15:12 +00:00
RSA: CS adjustments
This commit is contained in:
parent
845a2275e8
commit
85a844bab1
@ -93,6 +93,7 @@ abstract class RSA extends AsymmetricKey
|
|||||||
* @see self::decrypt()
|
* @see self::decrypt()
|
||||||
*/
|
*/
|
||||||
const ENCRYPTION_OAEP = 1;
|
const ENCRYPTION_OAEP = 1;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Use PKCS#1 padding.
|
* Use PKCS#1 padding.
|
||||||
*
|
*
|
||||||
@ -104,6 +105,7 @@ abstract class RSA extends AsymmetricKey
|
|||||||
* @see self::decrypt()
|
* @see self::decrypt()
|
||||||
*/
|
*/
|
||||||
const ENCRYPTION_PKCS1 = 2;
|
const ENCRYPTION_PKCS1 = 2;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Do not use any padding
|
* Do not use any padding
|
||||||
*
|
*
|
||||||
@ -130,6 +132,7 @@ abstract class RSA extends AsymmetricKey
|
|||||||
* @access public
|
* @access public
|
||||||
*/
|
*/
|
||||||
const SIGNATURE_PSS = 16;
|
const SIGNATURE_PSS = 16;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Use a relaxed version of PKCS#1 padding for signature verification
|
* Use a relaxed version of PKCS#1 padding for signature verification
|
||||||
*
|
*
|
||||||
@ -139,6 +142,7 @@ abstract class RSA extends AsymmetricKey
|
|||||||
* @access public
|
* @access public
|
||||||
*/
|
*/
|
||||||
const SIGNATURE_RELAXED_PKCS1 = 32;
|
const SIGNATURE_RELAXED_PKCS1 = 32;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Use PKCS#1 padding for signature verification
|
* Use PKCS#1 padding for signature verification
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user