Add selfCertification property to PrimaryUser interface definition (#1594)

Also, mark the `publicKeys` parameter of `Key.verifyAllUsers` as optional.
This commit is contained in:
Roman 2023-02-17 19:03:32 +03:00 committed by GitHub
parent 3e6e8d03a4
commit 5b92b80f79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

3
openpgp.d.ts vendored
View File

@ -58,7 +58,7 @@ export abstract class Key {
public signAllUsers(privateKeys: PrivateKey[], date?: Date, config?: Config): Promise<this>
public verifyPrimaryKey(date?: Date, userID?: UserID, config?: Config): Promise<void>; // throws on error
public verifyPrimaryUser(publicKeys: PublicKey[], date?: Date, userIDs?: UserID, config?: Config): Promise<{ keyID: KeyID, valid: boolean | null }[]>;
public verifyAllUsers(publicKeys: PublicKey[], date?: Date, config?: Config): Promise<{ userID: string, keyID: KeyID, valid: boolean | null }[]>;
public verifyAllUsers(publicKeys?: PublicKey[], date?: Date, config?: Config): Promise<{ userID: string, keyID: KeyID, valid: boolean | null }[]>;
public isRevoked(signature?: SignaturePacket, key?: AnyKeyPacket, date?: Date, config?: Config): Promise<boolean>;
public getRevocationCertificate(date?: Date, config?: Config): Promise<MaybeStream<string> | undefined>;
public getEncryptionKey(keyID?: KeyID, date?: Date | null, userID?: UserID, config?: Config): Promise<this | Subkey>;
@ -114,6 +114,7 @@ export interface User {
export interface PrimaryUser {
index: number;
user: User;
selfCertification: SignaturePacket;
}
type AlgorithmInfo = {