Use BLAKE2b checksum instead of SHA-1 and SHA-512
This commit is contained in:
parent
9325419002
commit
e6e6e6c206
7 changed files with 58 additions and 38 deletions
|
@ -21,7 +21,7 @@
|
|||
<a ng-href="{{ file.path }}" target="_self" class="list-group-item" ng-repeat="file in my.exercices[current_exercice].files">
|
||||
<h1 class="pull-left" style="margin: 7px 7px 5px -5px"><span class="glyphicon glyphicon-download" aria-hidden="true"></span></h1>
|
||||
<h4 class="list-group-item-heading"><strong><samp>{{ file.name }}</samp></strong></h4>
|
||||
<p class="list-group-item-text">Taille : <span title="{{ file.size }} octets">{{ file.size | size }}</span> – SHA-1 : <samp>{{ file.checksum }}</samp></p>
|
||||
<p class="list-group-item-text">Taille : <span title="{{ file.size }} octets">{{ file.size | size }}</span> – <a href="https://blake2.net/">b2sum</a> : <samp>{{ file.checksum }}</samp></p>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -80,7 +80,7 @@
|
|||
</div>
|
||||
<div class="panel-body">
|
||||
<p>
|
||||
Vérifiez les clefs que vous trouvez en comparant leur SHA-512 :
|
||||
Vérifiez les clefs que vous trouvez en comparant leur <a href="https://blake2.net/">BLAKE2b</a> :
|
||||
</p>
|
||||
<dl class="dl-horizontal" ng-repeat="key in my.exercices[current_exercice].keys">
|
||||
<dt title="{{ key.slice(128) }}">{{ key.slice(128) }}</dt>
|
||||
|
|
Reference in a new issue