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

Add SCEPDecrypter configuration #55

Merged
merged 12 commits into from
Sep 25, 2023
2 changes: 1 addition & 1 deletion admin.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion eab.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion majordomo.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion majordomo_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion policy.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

346 changes: 233 additions & 113 deletions provisioners.pb.go

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions spec/linkedca/provisioners.proto
Original file line number Diff line number Diff line change
Expand Up @@ -168,13 +168,22 @@ message K8sSAProvisioner {

message SSHPOPProvisioner {}

message SCEPDecrypter {
bytes certificate = 1;
bytes key = 2;
string key_uri = 3;
bytes key_password = 4;
}

message SCEPProvisioner {
bool force_cn = 1;
string challenge = 2;
repeated string capabilities = 3;
int32 minimum_public_key_length = 4;
bool include_root = 5;
int32 encryption_algorithm_identifier = 6;
SCEPDecrypter decrypter = 7;
bool exclude_intermediate = 8;
}

message NebulaProvisioner {
Expand All @@ -196,6 +205,7 @@ message Webhook {
ENRICHING = 1;
AUTHORIZING = 2;
SCEPCHALLENGE = 3;
NOTIFYING = 4;
}
enum CertType {
ALL = 0;
Expand Down