-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
106 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
import base64 | ||
import binascii | ||
|
||
_SSH_ED25519 = b"ssh-ed25519" | ||
_SK_MAGIC = b"openssh-key-v1\0" | ||
_SK_START = b"-----BEGIN OPENSSH PRIVATE KEY-----\n" | ||
_SK_END = b"-----END OPENSSH PRIVATE KEY-----\n" | ||
_NONE = b"none" | ||
|
||
def _get_key_type(name): | ||
if name == "Ed25519": | ||
return _SSH_ED25519 | ||
else: | ||
raise ValueError("Unsupported key type") | ||
|
||
class _Serializer: | ||
def __init__(self): | ||
self.bytes = b"" | ||
|
||
def put_raw(self, val): | ||
self.bytes += val | ||
|
||
def put_u32(self, val): | ||
self.bytes += val.to_bytes(length=4, byteorder="big") | ||
|
||
def put_str(self, val): | ||
self.put_u32(len(val)) | ||
self.bytes += val | ||
|
||
def put_pad(self, blklen=8): | ||
padlen = blklen - (len(self.bytes) % blklen) | ||
self.put_raw(bytearray(range(1, 1 + padlen))) | ||
|
||
def encode(self): | ||
return binascii.b2a_base64(self.bytes) | ||
|
||
def tobytes(self): | ||
return self.bytes | ||
|
||
def topem(self): | ||
return b"".join([_SK_START, base64.encodebytes(self.bytes), _SK_END]) | ||
|
||
def serialize_public(name, pub): | ||
serial = _Serializer() | ||
ktype = _get_key_type(name) | ||
serial.put_str(ktype) | ||
serial.put_str(pub) | ||
return b" ".join([ktype, serial.encode()]) | ||
|
||
def serialize_private(name, pub, priv): | ||
# encode public part | ||
spub = _Serializer() | ||
ktype = _get_key_type(name) | ||
spub.put_str(ktype) | ||
spub.put_str(pub) | ||
|
||
# encode private part | ||
spriv = _Serializer() | ||
checksum = 0 | ||
spriv.put_u32(checksum) | ||
spriv.put_u32(checksum) | ||
spriv.put_raw(spub.tobytes()) | ||
spriv.put_str(priv + pub) | ||
comment = b"" | ||
spriv.put_str(comment) | ||
spriv.put_pad() | ||
|
||
# top-level structure | ||
main = _Serializer() | ||
main.put_raw(_SK_MAGIC) | ||
ciphername = kdfname = _NONE | ||
main.put_str(ciphername) | ||
main.put_str(kdfname) | ||
nokdf = 0 | ||
main.put_u32(nokdf) | ||
nkeys = 1 | ||
main.put_u32(nkeys) | ||
main.put_str(spub.tobytes()) | ||
main.put_str(spriv.tobytes()) | ||
return main.topem() |