You are here

public static function ParagonIE_Sodium_Compat::crypto_box_seal_open in Automatic Updates 8

Same name and namespace in other branches
  1. 7 vendor/paragonie/sodium_compat/src/Compat.php \ParagonIE_Sodium_Compat::crypto_box_seal_open()

Opens a message encrypted with crypto_box_seal(). Requires the recipient's keypair (sk || pk) to decrypt successfully.

This validates ciphertext integrity.

@psalm-suppress MixedArgument @psalm-suppress MixedInferredReturnType @psalm-suppress MixedReturnStatement

Parameters

string $ciphertext Sealed message to be opened:

string $keypair Your crypto_box keypair:

Return value

string The original plaintext message

Throws

SodiumException

TypeError

2 calls to ParagonIE_Sodium_Compat::crypto_box_seal_open()
php72compat.php in vendor/paragonie/sodium_compat/lib/php72compat.php
sodium_compat.php in vendor/paragonie/sodium_compat/lib/sodium_compat.php

File

vendor/paragonie/sodium_compat/src/Compat.php, line 1127

Class

ParagonIE_Sodium_Compat

Code

public static function crypto_box_seal_open($ciphertext, $keypair) {

  /* Type checks: */
  ParagonIE_Sodium_Core_Util::declareScalarType($ciphertext, 'string', 1);
  ParagonIE_Sodium_Core_Util::declareScalarType($keypair, 'string', 2);

  /* Input validation: */
  if (ParagonIE_Sodium_Core_Util::strlen($keypair) !== self::CRYPTO_BOX_KEYPAIRBYTES) {
    throw new SodiumException('Argument 2 must be CRYPTO_BOX_KEYPAIRBYTES long.');
  }
  if (self::useNewSodiumAPI()) {

    /**
     * @psalm-suppress InvalidReturnStatement
     * @psalm-suppress FalsableReturnStatement
     */
    return sodium_crypto_box_seal_open($ciphertext, $keypair);
  }
  if (self::use_fallback('crypto_box_seal_open')) {
    return call_user_func('\\Sodium\\crypto_box_seal_open', $ciphertext, $keypair);
  }
  if (PHP_INT_SIZE === 4) {
    return ParagonIE_Sodium_Crypto32::box_seal_open($ciphertext, $keypair);
  }
  return ParagonIE_Sodium_Crypto::box_seal_open($ciphertext, $keypair);
}