diff options
| author | James Elliott <james-d-elliott@users.noreply.github.com> | 2022-10-02 13:07:40 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-02 13:07:40 +1100 |
| commit | 6810c91d34fe1610d65725d62c5da4a17f4674e3 (patch) | |
| tree | 049d9759d3d21de7cea28c34b6e939f9643e10a9 /internal/configuration/schema/const.go | |
| parent | 66ea374227fde256adc95c084b4e18cba343c774 (diff) | |
feat(oidc): issuer jwk certificates (#3989)
This allows for JWKs to include certificate information, either signed via Global PKI, Enterprise PKI, or self-signed.
Diffstat (limited to 'internal/configuration/schema/const.go')
| -rw-r--r-- | internal/configuration/schema/const.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/configuration/schema/const.go b/internal/configuration/schema/const.go index 8ee9867b2..c43eefb9d 100644 --- a/internal/configuration/schema/const.go +++ b/internal/configuration/schema/const.go @@ -57,3 +57,8 @@ const ( // regexpHasScheme checks if a string has a scheme. Valid characters for schemes include alphanumeric, hyphen, // period, and plus characters. var regexpHasScheme = regexp.MustCompile(`^[-+.a-zA-Z\d]+://`) + +const ( + blockCERTIFICATE = "CERTIFICATE" + blockRSAPRIVATEKEY = "RSA PRIVATE KEY" +) |
