Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added support for rsa 3072 and ecdsa 384 #206

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions credentialz/credentialz.proto
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,8 @@ enum KeyType {
KEY_TYPE_ED25519 = 3;
KEY_TYPE_RSA_2048 = 4;
KEY_TYPE_RSA_4096 = 5;
KEY_TYPE_RSA_3072 = 6;
KEY_TYPE_ECDSA_P_384 = 7;
}

message AccountCredentials {
Expand Down Expand Up @@ -614,6 +616,8 @@ enum KeyGen {
KEY_GEN_SSH_KEY_TYPE_ECDSA_P_521 = 3;
KEY_GEN_SSH_KEY_TYPE_EDDSA_ED25519 = 4;
KEY_GEN_SSH_KEY_TYPE_RSA_4096 = 5;
KEY_GEN_SSH_KEY_TYPE_RSA_3072 = 6;
KEY_GEN_SSH_KEY_TYPE_ECDSA_P_384 = 7;
}

// A request to ask the target if it can generate key pairs
Expand Down