sodium_memzero

(PHP 7 >= 7.2.0, PHP 8)

sodium_memzeroSobrescreve uma string com caracteres NUL

Descrição

function sodium_memzero(#[\SensitiveParameter] string &$string): void

sodium_memzero() zera a string passada por referência.

Parâmetros

string
String.

Valor Retornado

Nenhum valor é retornado.

adicionar nota

Notas de Usuários 1 note

up
1
Anonymous
8 days ago
<?php

$key = random_bytes(SODIUM_CRYPTO_SECRETBOX_KEYBYTES);

$message = "Customer financial data";
$nonce = random_bytes(SODIUM_CRYPTO_SECRETBOX_NONCEBYTES);

$ciphertext = sodium_crypto_secretbox($message, $nonce, $key);

// Key no longer needed
sodium_memzero($key);

var_dump($key); // Usually becomes an empty string
To Top