RRE-Site/docs/Extras/KeyGeneration.md

23 lines
791 B
Markdown

# Method 1
We've put together a quick and easy way to generate public/private key pairs right from your web browser:
<button class="md-button md-button--primary" onClick="generateKey()">Generate KeyPair</button>
Public Key:
<textarea type="text" class="textArea" id="publicKey" readonly>
</textarea>
Private Key:
<textarea type="text" class="textArea" id="privateKey" readonly>
</textarea>
<script src="/assets/KeyGeneration.js"></script>
# Method 2
A user by the name of coke<sub><sup>[Citation needed]</sup></sub> made an application which generates RSA pairs for the client, the download can be found [here](/hidden/Download#906c8ec652e43b043603b97fc0e31a626448e65bdf4819c7a8c4bc18a768d8a8).
<h3 id="see-also">See Also:</h3>
- [What are signatures?](/Client Security/Signatures)