Ben MySQL şifreleme inşa kullanarak sorunun en iyi çözüm olurdu emin değilim.
PHP'nin M_CRYPT paketi oldukça iyi olduğu düşünülmektedir ve bu sizin ihtiyaçlarınız için en uygun algoritma seçmek için esneklik verir.
Storing your key on some other server has one big advantage: the key is not on the same machine as the encrypted data*). So as long as the attacker does not have enough control over the compromised machine, they cannot get to the key.
If the attacker gains full control of the machine the data is stored on, they most likely will be able to query the web-service for the key.
Ancak, bir makineden diğerine anahtarını ileten yedeklenmesi gereken tamamen yeni bir alan açıyor. Muhtemelen böylece yapılan hataların şansını artırarak, daha fazla kilit en fazla şifreleme katmanı içeren.
*) Diğer seçenek başlatmak ve sadece bellekte tutmak web sunucusu üzerine şifreyi girmek için.
Possible solution
If seen a solution employed that used the following method for encrypting files for users with web access (I'm not sure of your environment, but it might be helpful):
- Kullanıcı yaratma üzerine, uzun bir rasgele bir anahtar yeni kullanıcıya atanır.
- This random key is stored in an encrypted column in the user record.
(only this column is encrypted as to not affect the performance of the rest of the record!)
- The encryption of the random-key column is done with 1 master password, stored in a file or in memory.
(The better option is to enter the password upon staring your webserver and only store it in memory.)
(Another approach would be to let the user enter a password and use that to encrypt/decrypt the random-key column, but I'm not sure if that would increase or decrease security)
- Şifreli gereken her türlü belge, bu kullanıcı için rasgele anahtar ile şifrelenmiş ve sonra diskte depolanır.
- Belgeler dosya sisteminde en az izinler ile saklanır.
The advantages of this approach are:
1. The random-key is encrypted in the database. So you still have the added security of the database-server, in combination with the encrypted column.
2. Documents are stored with different keys, if the attacker gets hold of a key, only part of the documents is compromised.
However:
If the attacker gets hold of the master password and has read access to the user-table, the entire system is, once more, broken.