Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Security

Inside the Windows Vista Disk Encryption Algorithm


Performance Analysis

We studied the performance of the AES-CBC + Elephant diffuser (the original implementation and the one recommended here for maximum performance) and the proposed AES-ECB + Elephant diffuser on a single processor, then estimated their performance on a dual-core processor.

The measurements we report are processor clock cycles on a PIV 3-GHz processor running Windows Vista. The programming environment is Microsoft VC++.

Single Processor

Our optimized implementation for Diffuser A and Diffuser B (using a loop unrolling mechanism) shows that:

  • 4560 clock cycles are required for the current implementation of the diffusion layer.
  • 256 cycles (128 for the XOR process of the sector key and the other 128 in the XOR process in the CBC mode, using 32-bit XOR operation).
  • 13,888 clock cycles for the AES encryption (using optimized assembly language).

That is, it takes 18,704 clock cycles to encrypt a 512-byte sector using the AES-CBC + Elephant diffuser. This value can be reduced to 15,854 if you use (AC=2 and BC=1); that's about an 18 percent enhancement in the total running time.

With the AES-ECB + Elephant diffuser:

  • 4560 clock cycles are required for the current implementation of the diffusion layer.
  • 128 clocks for the XOR process of the sector key.
  • 32 clocks for the addition of the counter.
  • 13,888 clock cycles for the AES encryption.

In this case, 18,608 clock cycles are used to encrypt a 512-byte sector using the AES-ECB + Elephant diffuser. This value can be reduced to 16,328 if the minimum recommended values are used to achieve maximum performance (AC=2 and BC=2). That's about a 14 percent enhancement in the total running time.

Dual Processor

To take advantage of dual-core processors, we investigated the AES-ECB + Elephant diffuser with the AES-ECB layer (which can be easily parallelized). Here, we estimated the processing time when a dual-core processor was used. For simplification, we divide the processing time by two when parallelization can be done.

In the case of the AES-CBC + Elephant diffuser, XORing with the sector key can be parallelized, so it takes only 64 clock cycles. Neither the diffusion layer nor the AES-CBC can be parallelized (by definition, they are serial). So the estimated processing times are 15,696 (when AC=5 and BC=3) and 12,846 (when AC=2 and BC=1) clock cycles for encrypting a 512-byte sector.

For the AES-ECB + Elephant diffuser, because counter addition can be parallelized, it takes only 16 clock cycles. The XORing with the sector key can be parallelized, so it only takes 64 clock cycles. The diffusion layer cannot be parallelized. But since the AES-ECB layer can be parallelized, the estimated processing times are 11,584 (when AC=5 and BC=3) and 9304 (when AC=2 and BC=2) clock cycles for encrypting a 512-byte sector. This is about 60-100 percent faster than the original AES-CBC + Elephant diffuser implementation (depending on the values of AC and BC).


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.