From 08bb49af0f59842424c316a19b01cb89b8884111 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Thu, 7 Jul 2022 11:25:33 -0400 Subject: [PATCH] Common: Add ssh-key-regex note to TODO --- monkey/common/credentials/ssh_keypair.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/monkey/common/credentials/ssh_keypair.py b/monkey/common/credentials/ssh_keypair.py index 35f074b13..6b8dcded2 100644 --- a/monkey/common/credentials/ssh_keypair.py +++ b/monkey/common/credentials/ssh_keypair.py @@ -8,7 +8,8 @@ from .credential_component_schema import CredentialComponentSchema, CredentialTy class SSHKeypairSchema(CredentialComponentSchema): credential_type = CredentialTypeField(CredentialComponentType.SSH_KEYPAIR) - # TODO: Find a list of valid formats for ssh keys and add validators + # TODO: Find a list of valid formats for ssh keys and add validators. + # See https://github.com/nemchik/ssh-key-regex private_key = fields.Str() public_key = fields.Str()