Joomla CMS  4.2.2
Documentation des API du CMS Joomla en version 4.2.2
Référence de la classe RC2
+ Graphe d'héritage de RC2:

Fonctions membres publiques

 __construct ($mode)
 
 setKeyLength ($length)
 
 getKeyLength ()
 
 setKey ($key, $t1=false)
 
 encrypt ($plaintext)
 
 decrypt ($ciphertext)
 
- Fonctions membres publiques hérités de SymmetricKey
 __construct ($mode)
 
 setIV ($iv)
 
 enablePoly1305 ()
 
 setPoly1305Key ($key=null)
 
 setNonce ($nonce)
 
 setAAD ($aad)
 
 usesIV ()
 
 usesNonce ()
 
 getKeyLength ()
 
 getBlockLength ()
 
 getBlockLengthInBytes ()
 
 setKeyLength ($length)
 
 setKey ($key)
 
 setPassword ($password, $method='pbkdf2',... $func_args)
 
 encrypt ($plaintext)
 
 decrypt ($ciphertext)
 
 getTag ($length=16)
 
 setTag ($tag)
 
 enablePadding ()
 
 disablePadding ()
 
 enableContinuousBuffer ()
 
 disableContinuousBuffer ()
 
 isValidEngine ($engine)
 
 setPreferredEngine ($engine)
 
 getEngine ()
 
 getMode ()
 

Fonctions membres protégées

 isValidEngineHelper ($engine)
 
 encryptBlock ($in)
 
 decryptBlock ($in)
 
 setupKey ()
 
 setupInlineCrypt ()
 
- Fonctions membres protégées hérités de SymmetricKey
 getIV ($iv)
 
 openssl_translate_mode ()
 
 isValidEngineHelper ($engine)
 
 setEngine ()
 
 encryptBlock ($in)
 
 decryptBlock ($in)
 
 setupKey ()
 
 setup ()
 
 pad ($text)
 
 unpad ($text)
 
 createInlineCryptFunction ($cipher_code)
 
 poly1305 ($text)
 

Attributs protégés

 $block_size = 8
 
 $key
 
 $key_length = 16
 
 $cipher_name_mcrypt = 'rc2'
 
 $cfb_init_len = 500
 
- Attributs protégés hérités de SymmetricKey
 $mode
 
 $block_size = 16
 
 $key = false
 
 $iv = false
 
 $encryptIV
 
 $decryptIV
 
 $continuousBuffer = false
 
 $enbuffer
 
 $debuffer
 
 $cfb_init_len = 600
 
 $changed = true
 
 $nonIVChanged = true
 
 $engine
 
 $cipher_name_mcrypt
 
 $cipher_name_openssl
 
 $cipher_name_openssl_ecb
 
 $inline_crypt
 
 $explicit_key_length = false
 
 $aad = ''
 
 $newtag = false
 
 $oldtag = false
 
 $poly1305Key
 
 $usePoly1305 = false
 
 $nonce = false
 

Attributs privés

 $orig_key
 
 $skip_key_adjustment = true
 
 $default_key_length = 1024
 
 $current_key_length
 
 $keys
 

Attributs privés statiques

static $pitable
 
static $invpitable
 

Membres hérités additionnels

- Champs de données hérités de SymmetricKey
const MODE_CTR = -1
 
const MODE_ECB = 1
 
const MODE_CBC = 2
 
const MODE_CFB = 3
 
const MODE_CFB8 = 7
 
const MODE_OFB8 = 8
 
const MODE_OFB = 4
 
const MODE_GCM = 5
 
const MODE_STREAM = 6
 
const MODE_MAP
 
const const ENGINE_INTERNAL = 1
 
const ENGINE_EVAL = 2
 
const ENGINE_MCRYPT = 3
 
const ENGINE_OPENSSL = 4
 
const ENGINE_LIBSODIUM = 5
 
const ENGINE_OPENSSL_GCM = 6
 
const ENGINE_MAP
 
- Fonctions membres protégées statiques hérités de SymmetricKey
static safe_intval ($x)
 
static safe_intval_inline ()
 
static nullPad128 ($str)
 

Documentation des constructeurs et destructeur

◆ __construct()

__construct (   $mode)

Default Constructor.

Paramètres
string$modepublic
Exceptions

Références SymmetricKey\$mode, et Symfony\Contracts\Service\__construct().

Documentation des fonctions membres

◆ decrypt()

decrypt (   $ciphertext)

Decrypts a message.

Mostly a wrapper for ::decrypt, with some additional OpenSSL handling code

Voir également
self::encrypt() public
Paramètres
string$ciphertext
Renvoie
string $plaintext

Références RC2\$key, RC2\$orig_key, $result, et $temp.

◆ decryptBlock()

decryptBlock (   $in)
protected

Decrypts a block

Voir également
::decryptBlock()
::decrypt() private
Paramètres
string$in
Renvoie
string

Références $actions, RC2\$keys, et $limit.

◆ encrypt()

encrypt (   $plaintext)

Encrypts a message.

Mostly a wrapper for ::encrypt, with some additional OpenSSL handling code

Voir également
self::decrypt() public
Paramètres
string$plaintext
Renvoie
string $ciphertext

Références RC2\$key, RC2\$orig_key, $result, et $temp.

◆ encryptBlock()

encryptBlock (   $in)
protected

Encrypts a block

Voir également
::encryptBlock()
::encrypt() private
Paramètres
string$in
Renvoie
string

Références $actions, RC2\$keys, et $limit.

◆ getKeyLength()

getKeyLength ( )

Returns the current key length

public

Renvoie
int

Références RC2\$current_key_length.

◆ isValidEngineHelper()

isValidEngineHelper (   $engine)
protected

Test for engine validity

This is mainly just a wrapper to set things up for ::isValidEngine()

Voir également
__construct()
Paramètres
int$engineprotected
Renvoie
bool

Références SymmetricKey\$engine, et SymmetricKey\openssl_translate_mode().

◆ setKey()

setKey (   $key,
  $t1 = false 
)

Sets the key.

Keys can be of any length. RC2, itself, uses 8 to 1024 bit keys (eg. strlen($key) <= 128), however, we only use the first 128 bytes if $key has more then 128 bytes in it, and set $key to a single null byte if it is empty.

Voir également
::setKey() public
Paramètres
string$key
int | boolean$t1optional Effective key length in bits.
Exceptions

Références RC2\$default_key_length, $i, RC2\$key, RC2\$pitable, et SymmetricKey\setEngine().

Référencé par RC2\setupKey().

◆ setKeyLength()

setKeyLength (   $length)

Sets the key length.

Valid key lengths are 8 to 1024. Calling this function after setting the key has no effect until the next ::setKey() call.

public

Paramètres
int$lengthin bits
Exceptions

◆ setupInlineCrypt()

setupInlineCrypt ( )
protected

Setup the performance-optimized function for de/encrypt()

Voir également
::setupInlineCrypt() private

Références $actions, RC2\$keys, $limit, et SymmetricKey\createInlineCryptFunction().

◆ setupKey()

setupKey ( )
protected

Creates the key schedule

Voir également
::setupKey() private

Références RC2\setKey().

Documentation des champs

◆ $block_size

$block_size = 8
protected

◆ $cfb_init_len

$cfb_init_len = 500
protected

◆ $cipher_name_mcrypt

$cipher_name_mcrypt = 'rc2'
protected

◆ $current_key_length

$current_key_length
private

The key length in bits.

{

Référencé par RC2\getKeyLength().

◆ $default_key_length

$default_key_length = 1024
private

The key length in bits.

{

Référencé par RC2\setKey().

◆ $invpitable

$invpitable
staticprivate

◆ $key

$key
protected

Référencé par RC2\decrypt(), RC2\encrypt(), et RC2\setKey().

◆ $key_length

$key_length = 16
protected

◆ $keys

$keys
private

◆ $orig_key

$orig_key
private

Référencé par RC2\decrypt(), et RC2\encrypt().

◆ $pitable

$pitable
staticprivate

Référencé par RC2\setKey().

◆ $skip_key_adjustment

$skip_key_adjustment = true
private

La documentation de cette classe a été générée à partir du fichier suivant :