N
N
Nikolay2017-11-15 18:01:09
PHP
Nikolay, 2017-11-15 18:01:09

Implemented a class for RSA decode, but the method throws an error. What is the problem?

Description of the method

сlass Decode
{
  private $message;
  private $key;

  function __construct ($message, $key) {
    $this->message = $message;
    $this->key = openssl_pkey_get_private($key);
  }

  public function getMessage () {
    $details = openssl_pkey_get_details($this->key);
    $chunkSize = ((4 * (($details['bits'] / 8) / 3) + 3)& ~ 3);
    $output = '';
     
    while ($this->message)
    {
      $chunk = substr($this->message, 0, $chunkSize);
      $this->message = substr($this->message, $chunkSize);
      $decrypted = '';
      if (!openssl_private_decrypt($chunk, $decrypted, $this->key))
      {
        // Именно тут выбрасывается ошибка
        die('Failed to decrypt data');
      }
      $output .= $decrypted;
    }
    openssl_free_key($this->key);

    return $output;
  }	
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
Rsa97, 2017-11-15
@Rsa97

Fence the class where one line is enough...

openssl_private_decrypt($encrypted, $decrypted, openssl_get_privatekey(key));

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question