moto/tests/test_ec2/test_utils.py

13 lines
348 B
Python
Raw Normal View History

from moto.ec2 import utils
from .helpers import rsa_check_private_key
def test_random_key_pair():
key_pair = utils.random_key_pair()
2019-10-31 15:44:26 +00:00
rsa_check_private_key(key_pair["material"])
# AWS uses MD5 fingerprints, which are 47 characters long, *not* SHA1
# fingerprints with 59 characters.
2019-10-31 15:44:26 +00:00
assert len(key_pair["fingerprint"]) == 47