Defuse\Crypto\File::decryptResourceWithPassword PHP Метод

decryptResourceWithPassword() публичный статический Метод

Decrypts the contents of one resource into another with a password, using a slow key derivation function to make password cracking more expensive.
public static decryptResourceWithPassword ( resource $inputHandle, resource $outputHandle, string $password )
$inputHandle resource
$outputHandle resource
$password string
    public static function decryptResourceWithPassword($inputHandle, $outputHandle, $password)
    {
        self::decryptResourceInternal($inputHandle, $outputHandle, KeyOrPassword::createFromPassword($password));
    }