You are here

public static function ParagonIE_Sodium_File::box in Automatic Updates 8

Same name and namespace in other branches
  1. 7 vendor/paragonie/sodium_compat/src/File.php \ParagonIE_Sodium_File::box()

Box a file (rather than a string). Uses less memory than ParagonIE_Sodium_Compat::crypto_box(), but produces the same result.

Parameters

string $inputFile Absolute path to a file on the filesystem:

string $outputFile Absolute path to a file on the filesystem:

string $nonce Number to be used only once:

string $keyPair ECDH secret key and ECDH public key concatenated:

Return value

bool

Throws

SodiumException

TypeError

File

vendor/paragonie/sodium_compat/src/File.php, line 28

Class

ParagonIE_Sodium_File
Class ParagonIE_Sodium_File

Code

public static function box($inputFile, $outputFile, $nonce, $keyPair) {

  /* Type checks: */
  if (!is_string($inputFile)) {
    throw new TypeError('Argument 1 must be a string, ' . gettype($inputFile) . ' given.');
  }
  if (!is_string($outputFile)) {
    throw new TypeError('Argument 2 must be a string, ' . gettype($outputFile) . ' given.');
  }
  if (!is_string($nonce)) {
    throw new TypeError('Argument 3 must be a string, ' . gettype($nonce) . ' given.');
  }

  /* Input validation: */
  if (!is_string($keyPair)) {
    throw new TypeError('Argument 4 must be a string, ' . gettype($keyPair) . ' given.');
  }
  if (self::strlen($nonce) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_NONCEBYTES) {
    throw new TypeError('Argument 3 must be CRYPTO_BOX_NONCEBYTES bytes');
  }
  if (self::strlen($keyPair) !== ParagonIE_Sodium_Compat::CRYPTO_BOX_KEYPAIRBYTES) {
    throw new TypeError('Argument 4 must be CRYPTO_BOX_KEYPAIRBYTES bytes');
  }

  /** @var int $size */
  $size = filesize($inputFile);
  if (!is_int($size)) {
    throw new SodiumException('Could not obtain the file size');
  }

  /** @var resource $ifp */
  $ifp = fopen($inputFile, 'rb');
  if (!is_resource($ifp)) {
    throw new SodiumException('Could not open input file for reading');
  }

  /** @var resource $ofp */
  $ofp = fopen($outputFile, 'wb');
  if (!is_resource($ofp)) {
    fclose($ifp);
    throw new SodiumException('Could not open output file for writing');
  }
  $res = self::box_encrypt($ifp, $ofp, $size, $nonce, $keyPair);
  fclose($ifp);
  fclose($ofp);
  return $res;
}