Slide 5
Slide 5 text
Can we make our database do this?
• MySQL supports symmetric encryption
mysql> insert into foobar values(1, AES_ENCRYPT('plaintext',
SHA2('passphrase', 512)));
mysql> select AES_DECRYPT(data, SHA2('passphrase', 512))
from foobar where index=1;
• Protecting the passphrase is important
– Store passphrase in tmpfs?
– Use users password?