funky-framadate-front/src/app/features/shared/components/ui/static-pages/ciphering/ciphering.component.html

23 lines
452 B
HTML

<div class="ciphering padded">
<h2>
Test de chiffrement
</h2>
<br />
<input type="text" [(ngModel)]="plainText" (ngModelChange)="encrypt(plainText)" />
texte clair
<br />
<input type="text" [(ngModel)]="salt" />
salt
<br />
<input type="text" [(ngModel)]="key" />
pepper
<br />
<input type="text" [(ngModel)]="cipheredText" />
texte chiffré
<br />
<input type="text" [(ngModel)]="otherCipheredText" />
texte à déchiffrer
</div>