Importante : a meno che non si abbia un caso d'uso molto particolare, non crittografare le password , utilizzare invece un algoritmo di hashing delle password. Quando qualcuno dice di crittografare le password in un'applicazione lato server, non sono informati o descrivono un progetto di sistema pericoloso. La memorizzazione sicura delle password è un problema completamente separato dalla crittografia.
Essere informato. Progetta sistemi sicuri.
Crittografia dei dati portatile in PHP
Se stai utilizzando PHP 5.4 o versioni successive e non vuoi scrivere tu stesso un modulo di crittografia, ti consiglio di utilizzare una libreria esistente che fornisce la crittografia autenticata . La biblioteca che ho collegato si basa solo su ciò che fornisce PHP ed è sottoposta a revisione periodica da parte di una manciata di ricercatori sulla sicurezza. (Me stesso incluso.)
Se i tuoi obiettivi di portabilità non impediscono la richiesta di estensioni PECL, libsodium è altamente raccomandato su qualsiasi cosa tu o io possiamo scrivere in PHP.
Aggiornamento (12/06/2016): ora puoi utilizzare sodium_compat e utilizzare le stesse offerte di cripto-libsodio senza installare estensioni PECL.
Se vuoi cimentarti nell'ingegneria della crittografia, continua a leggere.
Innanzitutto, dovresti prenderti il tempo per imparare i pericoli della crittografia non autenticata e del Principio crittografico del destino .
- I dati crittografati possono comunque essere manomessi da un utente malintenzionato.
- L'autenticazione dei dati crittografati impedisce la manomissione.
- L'autenticazione dei dati non crittografati non impedisce la manomissione.
Crittografia e decrittografia
La crittografia in PHP è in realtà semplice (useremo openssl_encrypt()
e openssl_decrypt()
una volta che avrai preso alcune decisioni su come crittografare le tue informazioni. Consulta openssl_get_cipher_methods()
un elenco dei metodi supportati sul tuo sistema. La scelta migliore è AES in modalità CTR :
aes-128-ctr
aes-192-ctr
aes-256-ctr
Al momento non vi è motivo di ritenere che la dimensione della chiave AES sia un problema significativo di cui preoccuparsi (probabilmente la dimensione maggiore non è migliore a causa di una pianificazione errata della chiave nella modalità a 256 bit).
Nota: non lo stiamo utilizzando mcrypt
perché èandonware e presenta bug senza patch che potrebbero compromettere la sicurezza. Per questi motivi, incoraggio anche altri sviluppatori PHP a evitarlo.
Wrapper di crittografia / decrittografia semplice con OpenSSL
class UnsafeCrypto
{
const METHOD = 'aes-256-ctr';
/**
* Encrypts (but does not authenticate) a message
*
* @param string $message - plaintext message
* @param string $key - encryption key (raw binary expected)
* @param boolean $encode - set to TRUE to return a base64-encoded
* @return string (raw binary)
*/
public static function encrypt($message, $key, $encode = false)
{
$nonceSize = openssl_cipher_iv_length(self::METHOD);
$nonce = openssl_random_pseudo_bytes($nonceSize);
$ciphertext = openssl_encrypt(
$message,
self::METHOD,
$key,
OPENSSL_RAW_DATA,
$nonce
);
// Now let's pack the IV and the ciphertext together
// Naively, we can just concatenate
if ($encode) {
return base64_encode($nonce.$ciphertext);
}
return $nonce.$ciphertext;
}
/**
* Decrypts (but does not verify) a message
*
* @param string $message - ciphertext message
* @param string $key - encryption key (raw binary expected)
* @param boolean $encoded - are we expecting an encoded string?
* @return string
*/
public static function decrypt($message, $key, $encoded = false)
{
if ($encoded) {
$message = base64_decode($message, true);
if ($message === false) {
throw new Exception('Encryption failure');
}
}
$nonceSize = openssl_cipher_iv_length(self::METHOD);
$nonce = mb_substr($message, 0, $nonceSize, '8bit');
$ciphertext = mb_substr($message, $nonceSize, null, '8bit');
$plaintext = openssl_decrypt(
$ciphertext,
self::METHOD,
$key,
OPENSSL_RAW_DATA,
$nonce
);
return $plaintext;
}
}
Esempio di utilizzo
$message = 'Ready your ammunition; we attack at dawn.';
$key = hex2bin('000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f');
$encrypted = UnsafeCrypto::encrypt($message, $key);
$decrypted = UnsafeCrypto::decrypt($encrypted, $key);
var_dump($encrypted, $decrypted);
Demo : https://3v4l.org/jl7qR
La semplice libreria di crittografia di cui sopra non è ancora sicura da usare. Dobbiamo autenticare i cifrati e verificarli prima di decifrare .
Nota : per impostazione predefinita, UnsafeCrypto::encrypt()
restituirà una stringa binaria non elaborata. Chiamalo così se hai bisogno di memorizzarlo in un formato binario sicuro (codificato in base64):
$message = 'Ready your ammunition; we attack at dawn.';
$key = hex2bin('000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f');
$encrypted = UnsafeCrypto::encrypt($message, $key, true);
$decrypted = UnsafeCrypto::decrypt($encrypted, $key, true);
var_dump($encrypted, $decrypted);
Demo : http://3v4l.org/f5K93
Wrapper di autenticazione semplice
class SaferCrypto extends UnsafeCrypto
{
const HASH_ALGO = 'sha256';
/**
* Encrypts then MACs a message
*
* @param string $message - plaintext message
* @param string $key - encryption key (raw binary expected)
* @param boolean $encode - set to TRUE to return a base64-encoded string
* @return string (raw binary)
*/
public static function encrypt($message, $key, $encode = false)
{
list($encKey, $authKey) = self::splitKeys($key);
// Pass to UnsafeCrypto::encrypt
$ciphertext = parent::encrypt($message, $encKey);
// Calculate a MAC of the IV and ciphertext
$mac = hash_hmac(self::HASH_ALGO, $ciphertext, $authKey, true);
if ($encode) {
return base64_encode($mac.$ciphertext);
}
// Prepend MAC to the ciphertext and return to caller
return $mac.$ciphertext;
}
/**
* Decrypts a message (after verifying integrity)
*
* @param string $message - ciphertext message
* @param string $key - encryption key (raw binary expected)
* @param boolean $encoded - are we expecting an encoded string?
* @return string (raw binary)
*/
public static function decrypt($message, $key, $encoded = false)
{
list($encKey, $authKey) = self::splitKeys($key);
if ($encoded) {
$message = base64_decode($message, true);
if ($message === false) {
throw new Exception('Encryption failure');
}
}
// Hash Size -- in case HASH_ALGO is changed
$hs = mb_strlen(hash(self::HASH_ALGO, '', true), '8bit');
$mac = mb_substr($message, 0, $hs, '8bit');
$ciphertext = mb_substr($message, $hs, null, '8bit');
$calculated = hash_hmac(
self::HASH_ALGO,
$ciphertext,
$authKey,
true
);
if (!self::hashEquals($mac, $calculated)) {
throw new Exception('Encryption failure');
}
// Pass to UnsafeCrypto::decrypt
$plaintext = parent::decrypt($ciphertext, $encKey);
return $plaintext;
}
/**
* Splits a key into two separate keys; one for encryption
* and the other for authenticaiton
*
* @param string $masterKey (raw binary)
* @return array (two raw binary strings)
*/
protected static function splitKeys($masterKey)
{
// You really want to implement HKDF here instead!
return [
hash_hmac(self::HASH_ALGO, 'ENCRYPTION', $masterKey, true),
hash_hmac(self::HASH_ALGO, 'AUTHENTICATION', $masterKey, true)
];
}
/**
* Compare two strings without leaking timing information
*
* @param string $a
* @param string $b
* @ref https://paragonie.com/b/WS1DLx6BnpsdaVQW
* @return boolean
*/
protected static function hashEquals($a, $b)
{
if (function_exists('hash_equals')) {
return hash_equals($a, $b);
}
$nonce = openssl_random_pseudo_bytes(32);
return hash_hmac(self::HASH_ALGO, $a, $nonce) === hash_hmac(self::HASH_ALGO, $b, $nonce);
}
}
Esempio di utilizzo
$message = 'Ready your ammunition; we attack at dawn.';
$key = hex2bin('000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f');
$encrypted = SaferCrypto::encrypt($message, $key);
$decrypted = SaferCrypto::decrypt($encrypted, $key);
var_dump($encrypted, $decrypted);
Demo : binari crudo , base64 codificato
Se qualcuno desidera utilizzare questa SaferCrypto
libreria in un ambiente di produzione o la propria implementazione degli stessi concetti, consiglio vivamente di contattare i crittografi residenti per un secondo parere prima di voi. Saranno in grado di parlarti di errori di cui forse non sono nemmeno a conoscenza.
Sarai molto meglio usando una libreria di crittografia stimabile .