Skip to content

Commit

Permalink
added support for rsa 3072 and ecdsa 384
Browse files Browse the repository at this point in the history
  • Loading branch information
rohit21187 authored and morrowc committed Sep 25, 2024
1 parent 6b542e0 commit 7ad5961
Showing 1 changed file with 4 additions and 0 deletions.
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

0 comments on commit 7ad5961

Please sign in to comment.