You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
542 B
22 lines
542 B
<div class="container">
|
|
<div class="row">
|
|
<table class="table-bordered table-condensed table-striped col-sm-12">
|
|
<thead>
|
|
<tr>
|
|
<th class="col-sm-6">Algorithme</th>
|
|
<th class="col-sm-1">Taille</th>
|
|
<td class="col-sm-5"></td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% CryptCheck::Tls::Cipher.list.each do |cipher| %>
|
|
<tr>
|
|
<th><%= cipher_name_label cipher %></th>
|
|
<th><%= cipher_size_label cipher %></th>
|
|
<th><%= cipher_labels cipher %></th>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|