
* crypto: add option to select which alg to use to generate Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix missing ecdsa options for XML signing Signed-off-by: Jens Langhammer <jens@goauthentik.io> * bump xml libraries and remove disclaimer Signed-off-by: Jens Langhammer <jens@goauthentik.io> * lock djangoframework Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
74 lines
2.7 KiB
TypeScript
74 lines
2.7 KiB
TypeScript
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
|
|
import { Form } from "@goauthentik/elements/forms/Form";
|
|
import "@goauthentik/elements/forms/HorizontalFormElement";
|
|
|
|
import { msg } from "@lit/localize";
|
|
import { TemplateResult, html } from "lit";
|
|
import { customElement } from "lit/decorators.js";
|
|
|
|
import {
|
|
AlgEnum,
|
|
CertificateGenerationRequest,
|
|
CertificateKeyPair,
|
|
CryptoApi,
|
|
} from "@goauthentik/api";
|
|
|
|
@customElement("ak-crypto-certificate-generate-form")
|
|
export class CertificateKeyPairForm extends Form<CertificateGenerationRequest> {
|
|
getSuccessMessage(): string {
|
|
return msg("Successfully generated certificate-key pair.");
|
|
}
|
|
|
|
async send(data: CertificateGenerationRequest): Promise<CertificateKeyPair> {
|
|
return new CryptoApi(DEFAULT_CONFIG).cryptoCertificatekeypairsGenerateCreate({
|
|
certificateGenerationRequest: data,
|
|
});
|
|
}
|
|
|
|
renderForm(): TemplateResult {
|
|
return html`<ak-form-element-horizontal
|
|
label=${msg("Common Name")}
|
|
name="commonName"
|
|
?required=${true}
|
|
>
|
|
<input type="text" class="pf-c-form-control" required />
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal label=${msg("Subject-alt name")} name="subjectAltName">
|
|
<input class="pf-c-form-control" type="text" />
|
|
<p class="pf-c-form__helper-text">
|
|
${msg("Optional, comma-separated SubjectAlt Names.")}
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${msg("Validity days")}
|
|
name="validityDays"
|
|
?required=${true}
|
|
>
|
|
<input class="pf-c-form-control" type="number" value="365" />
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal
|
|
label=${msg("Private key Algorithm")}
|
|
?required=${true}
|
|
name="alg"
|
|
>
|
|
<ak-radio
|
|
.options=${[
|
|
{
|
|
label: msg("RSA"),
|
|
value: AlgEnum.Rsa,
|
|
default: true,
|
|
},
|
|
{
|
|
label: msg("ECDSA"),
|
|
value: AlgEnum.Ecdsa,
|
|
},
|
|
]}
|
|
>
|
|
</ak-radio>
|
|
<p class="pf-c-form__helper-text">
|
|
${msg("Algorithm used to generate the private key.")}
|
|
</p>
|
|
</ak-form-element-horizontal> `;
|
|
}
|
|
}
|