aed402c5d5
-- * DemoExtension/maindemo.js - added a Demo for retrieving the default signing key * src/Errors.js - add a new Error if no default key can be determined * src/Key.js added documentation and a TODO marker for hasSecret. * src/Keyring.js implemented getDefaultKey * src/permittedOperations.js: Added missing entry for verify, added config_opt
45 lines
1.2 KiB
HTML
45 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="ui.css"/>
|
|
<script src="libs/gpgmejs.bundle.js"></script>
|
|
<script src="maindemo.js"></script>
|
|
</head>
|
|
<body>
|
|
<ul>
|
|
<li>
|
|
<span class="label">Text: </span>
|
|
<input type="text" id='cleartext' />
|
|
</li>
|
|
<li>
|
|
<span class="label">Public key ID: </span>
|
|
<input type="text" id="pubkey" value="" />
|
|
</li>
|
|
</ul>
|
|
<button id="buttonencrypt">Encrypt</button><br>
|
|
<hr>
|
|
<ul>
|
|
<li>
|
|
<span class="label">Encrypted armored Text: </span>
|
|
<textarea rows="5" cols="65" id="ciphertext" wrap="hard"></textarea>
|
|
</li>
|
|
</ul>
|
|
<button id="buttondecrypt">Decrypt</button><br>
|
|
<hr>
|
|
<h3>Result data:</h3>
|
|
<textarea id="answer" rows="5" cols="65" wrap="hard"></textarea>
|
|
|
|
<hr>
|
|
<ul>
|
|
<li>
|
|
<span class="label">Default Key:</span>
|
|
<button id="getdefaultkey">Get</button><br>
|
|
<span id="defaultkey"></span>
|
|
</li>
|
|
|
|
|
|
</ul>
|
|
</body>
|
|
</html>
|