����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 3.131.13.93 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/alt/alt-nodejs19/root/lib/node_modules/npm/node_modules/sigstore/dist/x509/ |
Upload File : |
/// <reference types="node" /> import * as sigstore from '../types/sigstore'; import { ASN1Obj } from './asn1/obj'; import { x509AuthorityKeyIDExtension, x509BasicConstraintsExtension, x509Extension, x509KeyUsageExtension, x509SCTExtension, x509SubjectAlternativeNameExtension, x509SubjectKeyIDExtension } from './ext'; interface SCTVerificationResult { verified: boolean; logID: Buffer; } export declare class x509Certificate { root: ASN1Obj; constructor(asn1: ASN1Obj); static parse(cert: Buffer | string): x509Certificate; get tbsCertificate(): ASN1Obj; get version(): string; get notBefore(): Date; get notAfter(): Date; get issuer(): Buffer; get subject(): Buffer; get publicKey(): Buffer; get signatureAlgorithm(): string; get signatureValue(): Buffer; get extensions(): ASN1Obj[]; get extKeyUsage(): x509KeyUsageExtension | undefined; get extBasicConstraints(): x509BasicConstraintsExtension | undefined; get extSubjectAltName(): x509SubjectAlternativeNameExtension | undefined; get extAuthorityKeyID(): x509AuthorityKeyIDExtension | undefined; get extSubjectKeyID(): x509SubjectKeyIDExtension | undefined; get extSCT(): x509SCTExtension | undefined; get isCA(): boolean; extension(oid: string): x509Extension | undefined; verify(issuerCertificate?: x509Certificate): boolean; validForDate(date: Date): boolean; equals(other: x509Certificate): boolean; verifySCTs(issuer: x509Certificate, logs: sigstore.TransparencyLogInstance[]): SCTVerificationResult[]; private clone; private findExtension; private checkRecognizedExtensions; private get tbsCertificateObj(); private get signatureAlgorithmObj(); private get signatureValueObj(); private get versionObj(); private get issuerObj(); private get validityObj(); private get subjectObj(); private get subjectPublicKeyInfoObj(); private get extensionsObj(); } export {};