aes on sharemind
play

AES on Sharemind Riivo Talviste, Jan Willemson - PowerPoint PPT Presentation

AES on Sharemind Riivo Talviste, Jan Willemson {riivo,janwil}@cyber.ee Estonian Computer Science Theory Days Kubija, January 27-29, 2012 This research was, in part, funded by the U.S. Government. The views and conclusions contained in this


  1. AES on Sharemind Riivo Talviste, Jan Willemson {riivo,janwil}@cyber.ee Estonian Computer Science Theory Days Kubija, January 27-29, 2012 This research was, in part, funded by the U.S. Government. The views and conclusions contained in this document are those of the authors and should not be interpreted as representing the official policies, either expressed or implied, of the U.S. Government. “A” (Approved for Public Release, Distribution Unlimited ) This research was supported by European Social Fund’s Doctoral Studies and Internationalisation Programme DoRa.

  2. sharemind a machine for fast privacy-preserving computations Motivation • Common benchmarking test • Can be used as a cryptographic primitive – E.g. Database JOIN operation 2

  3. sharemind a machine for fast privacy-preserving computations Advanced Encryption Standard • Symmetric block cipher – Using 128-bit blocks – 128, 192 or 256-bit keys • We use 128-bit keys in our implementation 3

  4. sharemind a machine for fast privacy-preserving computations AES-128 on Sharemind • Straightforward, following the NIST specification • Plaintext and key are bitwise secret shared s = s 1 ⊕ s 2 ⊕ s 3 , where ⊕ is XOR • Four 8-bit bytes are packed into a single 32-bit integer (word) • Most computations are local – Additions, bitshifts, multiplications by constant in GF(2 8 ) 4

  5. sharemind a machine for fast privacy-preserving computations AES-128 on Sharemind (2) • S-box : non-linear byte-for-byte substitution table – Has algebraic definition • Usually pre-computed and given as a 16x16 byte table • We use it as a 256-byte vector – Byte b is replaced with S-box[b] – Requires communication 5

  6. sharemind a machine for fast privacy-preserving computations Computing S-box: characteristic vector 0 0 0 0 0 0 1 s s 0 0 S-box 0 0 x = 0 0 … … 0 0 0 0 0 0 6

  7. sharemind a machine for fast privacy-preserving computations Computing S-box: characteristic vector (2) • Substitute byte b = b 7 b 6 b 5 b 4 b 3 b 2 b 1 b 0 • S-box[0] (1-b 7 )(1-b 6 )(1-b 5 )(1-b 4 )(1-b 3 )(1-b 2 )(1-b 1 )(1-b 0 ) S-box[1] (1-b 7 )(1-b 6 )(1-b 5 )(1-b 4 )(1-b 3 )(1-b 2 )(1-b 1 )b 0 S-box[2] (1-b 7 )(1-b 6 )(1-b 5 )(1-b 4 )(1-b 3 )(1-b 2 )b 1 (1-b 0 ) ... S-box[254] b 7 b 6 b 5 b 4 b 3 b 2 b 1 (1-b 0 ) S-box[255] b 7 b 6 b 5 b 4 b 3 b 2 b 1 b 0 7

  8. sharemind a machine for fast privacy-preserving computations Characteristic vector: multiplication Option 2: Option 1: b 3 b 7 b 5,1 b 7,3 b 6 b 2 x b 6,2,4,0 b 7,3,5,1 x 1024 x x b 6,2 b 4,0 b 1 b 5 256 b 3 b 2 b 1 b 0 b 7 b 6 b 5 b 4 b 0 b 4 Total: 7 rounds of Round 2 Round 3 multiplications Round 1 8

  9. sharemind a machine for fast privacy-preserving computations Vectorization • Several plaintexts (128-bit blocks) – Each block encrypted separately • Sharemind is highly optimized for vector operations • Idea: Process several plaintext blocks in parallel – Vector lengths increase by the factor of #(blocks), but #(communication rounds) stays the same 10

  10. sharemind a machine for fast privacy-preserving computations Pre-expanded key • S-box is used in key expansion phase: – Cipher key is used to generate ten 128-bit round keys • Secret shared cipher key has to be known to miners before AES can be executed • Idea: We can move key expansion to pre- processing phase and provide miners with the secret shared pre-expanded key instead 11

  11. sharemind a machine for fast privacy-preserving computations Benchmarking • 1 Gbit LAN 500000 450000 • Results: 400000 350000 – 13.9 B/s 300000 Time (ms) – 33.2 B/s 250000 200000 – 49.5 B/s 150000 100000 50000 • Hoped for larger 0 5 10 20 30 50 100 200 400 speedup :( Vector size (blocks) Sequential Vectorized Vectorized with pre-expanded key 12

  12. sharemind a machine for fast privacy-preserving computations What happened? • Vectors are too large for the network layer – E.g. SubBytes() multiplies vectors of size up to #(blocks) × 4096 words – Saturation point for multiplication protocol depends on bandwidth • In our scenario, it is ca. 10 000 – Hence, encrypting more than 2 blocks at once, clogs the network layer! • Optimizing only communication rounds is wrong – Large amount of data kills parallelization 13

  13. sharemind a machine for fast privacy-preserving computations S-box with circuits • Boyar and Peralta [2010, 2011] have come up with several circuits for AES S-box – Using only AND, XOR, XNOR – Minimal depth • In multi-party computing, XOR is free (local), AND (multiplication) costs – We want minimal number of AND gates 14

  14. sharemind a machine for fast privacy-preserving computations Benchmarking, again 1000000 100000 10000 Time (ms) 1000 100 10 1 5 10 20 30 50 100 200 300 400 500 1000 2000 3000 4000 5000 Vector size (blocks) Sequential Vectorized Vectorized with pre-expanded key Circuit Vectorized circuit with pre-expanded key 15

  15. sharemind a machine for fast privacy-preserving computations Benchmarking, again (2) • Vectorized circuit with pre-expanded key – Maximum vector length: #(blocks) × 18 words – Reach saturation point with ca. 550 blocks – Average throughput: 12.6 kB/s 16

  16. sharemind a machine for fast privacy-preserving computations Compare to others Team Model sec/ block Damgård, Keller [2009] 3-party, w/o pre-expanded key, 10 blocks in 2 parallel Huang et al. [2011] 2-party, pre-expanded key 0.06 Launchbury et al. [2011] 3-party, 1 block, no pipelining 0.015 3-party, 64 blocks in parallel, pipelined 0.007 Us [2011] 3-party, pre-expanded key, 10 blocks in parallel 0.07 3-party, pre-expanded key, 100 blocks in 0.007 parallel 3-party, pre-expanded key, 1000 blocks in 0.001 parallel 3-party, pre-expanded key, 5000 blocks in 0.0005 parallel 17

  17. sharemind a machine for fast privacy-preserving computations Conclusions • AES on secret shared data can be done • Optimizing only communication rounds is wrong – Large amount of data kills parallelization • Circuits help to lower the amount of data • In future, we use it to implement oblivious database JOIN operation 18

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend