6

If I use whole disk encryption, will I notice a drop in performance?

And what about for a SSD?

And I see that there is a option in my bios that enables Intel AES-NI does this have any effect on my encryption?

Braiam
  • 67,791
  • 32
  • 179
  • 269
  • see here http://askubuntu.com/questions/23489/what-is-the-performance-overhead-of-encrypted-home – mchid Jun 15 '14 at 12:48

2 Answers2

5

LUKS/dm-crypt which is used for encryption on Linux will slow your machine since it's a software encryption. However, on a SSD you probably won't notice any difference.

  • 3
    Performance is also largely determined by the processor since thats were the actual decryption and encryption of the file happens. – Gladen Jun 15 '14 at 19:08
1

You will notice a slowdown as you can see in these benchmarks that we done by Phoronix a few months ago (these benchmarks were done on an SSD by the way): http://www.phoronix.com/scan.php?page=article&item=linux311_disk_encryption&num=1

As you can see, performance can drop rather drastically. Unfortunately, I have no experience with Intel AES-NI, so I can't say what kind of effect that option would have. But I do think that if you're working with encrypted files you will always see some kind of slowdown since it needs to decrypt your stuff all the time (or at least at boot time)

Gladen
  • 2,726