Home
last modified time | relevance | path

Searched refs:encryptionPadding (Results 1 – 3 of 3) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php151 protected $encryptionPadding = self::ENCRYPTION_OAEP; variable in phpseclib3\\Crypt\\RSA
878 $encryptionPadding = $selected;
900 $new->encryptionPadding = $encryptionPadding;
914 return $this->signaturePadding | $this->encryptionPadding;
1039 if ($this->encryptionPadding !== self::ENCRYPTION_OAEP || PHP_VERSION_ID >= 80500) {
1042 if ($this->encryptionPadding === self::ENCRYPTION_OAEP) {
1050 … if ($this->encryptionPadding === self::ENCRYPTION_PKCS1 && OPENSSL_VERSION_NUMBER >= 0x30200000) {
1076 switch ($this->encryptionPadding) {
1079 …$padding = $this->encryptionPadding === self::ENCRYPTION_NONE ? OPENSSL_NO_PADDING : OPENSSL_PKCS1…
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPublicKey.php502 switch ($this->encryptionPadding) {
560 ->withPadding($this->signaturePadding | $this->encryptionPadding);
H A DPrivateKey.php447 switch ($this->encryptionPadding) {
476 ->withPadding($this->signaturePadding | $this->encryptionPadding);