19 lines
538 B
Markdown
19 lines
538 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
|
|
|
|
blahblahblah explain to the user about using a key generation application (todo) |