Certificates
Overview of how certificates function within HUDI's ecosystem.
How is it structured?
interface JwsTokenModel {
header: JwsTokenHeaderModel;
payload: JwsTokenPayloadModel;
signature: string;
}interface JwsTokenHeaderModel {
alg: string;
publicKey: string;
}interface JwsTokenPayloadModel {
serialNumber: string;
notBefore: Date;
notAfter: Date;
issuer: CertificateIssuerModel;
subject: CertificateSubjectModel;
}
interface CertificateIssuerModel {
commonName: string;
country: string;
state: string;
locality: string;
organizationName: string;
organizationUnit: string;
}
interface CertificateSubjectModel {
address: string;
uid: string;
provider: string;
}How to verify a HUDI certificate?
Last updated