Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- <div class="container">
- <div class="row">
- <table class="table table-bordered table-condensed table-striped center col-sm-12">
- <thead>
- <tr>
- <th rowspan="2"><%= t 'Name' %></th>
- <th rowspan="2"><%= t 'Authentication' %></th>
- <th rowspan="2"><%= t 'Key exchange' %></th>
- <th colspan="4"><%= t 'Encryption' %></th>
- <th colspan="2"><%= t 'MAC' %></th>
- <th rowspan="2"><%= t 'PFS' %></th>
- </tr>
- <tr>
- <th><%= t 'Type' %></th>
- <th><%= t 'Key size' %></th>
- <th><%= t 'Block size' %></th>
- <th><%= t 'Mode' %></th>
- <th><%= t 'Type' %></th>
- <th><%= t 'Size' %></th>
- </tr>
- </thead>
- <tbody>
- <% CryptCheck::Tls::Cipher[:TLSv1_2].each do |cipher|
- kex = cipher.kex
- auth = cipher.auth
- enc = cipher.encryption
- mac = cipher.hmac
- pfs = cipher.pfs?
- %>
- <tr>
- <th><%= cipher_name_label cipher %></th>
- <%= cipher_auth_type_cell auth %>
- <%= cipher_kex_type_cell kex %>
- <%= cipher_enc_type_cell enc[0] %>
- <%= cipher_enc_key_size_cell enc[1] %>
- <%= cipher_enc_block_size_cell enc[2] %>
- <%= cipher_enc_mode_cell enc[3] %>
- <%= cipher_mac_type_cell mac[0] %>
- <%= cipher_mac_size_cell mac[1] %>
- <%= cipher_pfs_cell pfs %>
- </tr>
- <% end %>
- </tbody>
- </table>
- </div>
- </div>
|