Remove option to disable encryption
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
1d84f122ac
commit
79595ad2a6
4 changed files with 10 additions and 17 deletions
12
assets.go
12
assets.go
File diff suppressed because one or more lines are too long
|
@ -3,9 +3,8 @@ securePassword = null
|
|||
createSecret = () ->
|
||||
secret = $('#formCreateSecret').find('textarea').val()
|
||||
|
||||
if $('#extra').prop 'checked'
|
||||
securePassword = Math.random().toString(36).substring(2)
|
||||
secret = GibberishAES.enc(secret, securePassword)
|
||||
securePassword = Math.random().toString(36).substring(2)
|
||||
secret = GibberishAES.enc(secret, securePassword)
|
||||
|
||||
$.ajax 'api/create',
|
||||
data:
|
||||
|
|
|
@ -7,10 +7,8 @@
|
|||
createSecret = function() {
|
||||
var secret;
|
||||
secret = $('#formCreateSecret').find('textarea').val();
|
||||
if ($('#extra').prop('checked')) {
|
||||
securePassword = Math.random().toString(36).substring(2);
|
||||
secret = GibberishAES.enc(secret, securePassword);
|
||||
}
|
||||
securePassword = Math.random().toString(36).substring(2);
|
||||
secret = GibberishAES.enc(secret, securePassword);
|
||||
$.ajax('api/create', {
|
||||
data: {
|
||||
secret: secret
|
||||
|
|
|
@ -83,10 +83,6 @@
|
|||
<label for="secret">Secret data:</label>
|
||||
<textarea class="form-control" rows="5" id="secret"></textarea>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="checkbox" name="extra-secure" id="extra" checked>
|
||||
<label for="extra">Make it extra secure (encrypt it before sending to the server)</label>
|
||||
</div>
|
||||
<input class="btn btn-success" type="submit" value="Create the secret!">
|
||||
</form>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue