11 lines
313 B
Python
11 lines
313 B
Python
from Crypto.PublicKey import RSA
|
|
|
|
def generate_ssh_key():
|
|
"""
|
|
Generates a new 2048 bit RSA private key in PEM format and public key in OpenSSH format.
|
|
"""
|
|
key = RSA.generate(2048)
|
|
private_pem = key.exportKey('PEM')
|
|
public_key = key.publicKey().exportKey('OpenSSH')
|
|
return (private_pem, public_key)
|
|
|