From fbd71f8dfee427b05da6f3c0de648ee50e0ed26d Mon Sep 17 00:00:00 2001 From: Daniel Huigens Date: Wed, 15 Feb 2023 19:33:39 +0100 Subject: [PATCH] Update type definitions --- openpgp.d.ts | 7 +++++-- test/typescript/definitions.ts | 8 ++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/openpgp.d.ts b/openpgp.d.ts index e2a49d6b..6ca41a56 100644 --- a/openpgp.d.ts +++ b/openpgp.d.ts @@ -166,7 +166,7 @@ export class CleartextMessage { * * @param privateKeys private keys with decrypted secret key data for signing */ - sign(privateKeys: PrivateKey[], signature?: Signature, signingKeyIDs?: KeyID[], date?: Date, userIDs?: UserID[], config?: Config): void; + sign(privateKeys: PrivateKey[], signature?: Signature, signingKeyIDs?: KeyID[], date?: Date, userIDs?: UserID[], notations?: RawNotation[], config?: Config): void; /** Verify signatures of cleartext signed message * @param keys array of keys to verify signatures @@ -285,7 +285,7 @@ export class Message> { /** Sign the message (the literal data packet of the message) @param signingKeys private keys with decrypted secret key data for signing */ - public sign(signingKeys: PrivateKey[], signature?: Signature, signingKeyIDs?: KeyID[], date?: Date, userIDs?: UserID[], config?: Config): Promise>; + public sign(signingKeys: PrivateKey[], signature?: Signature, signingKeyIDs?: KeyID[], date?: Date, userIDs?: UserID[], notations?: RawNotation[], config?: Config): Promise>; /** Unwrap compressed message */ @@ -604,6 +604,8 @@ interface EncryptOptions { signingUserIDs?: MaybeArray; /** (optional) array of user IDs to encrypt for, e.g. { name:'Robert Receiver', email:'robert@openpgp.org' } */ encryptionUserIDs?: MaybeArray; + /** (optional) array of notations to add to the signatures, e.g. { name: 'test@example.org', value: new TextEncoder().encode('test'), humanReadable: true } */ + signatureNotations?: MaybeArray; config?: PartialConfig; } @@ -637,6 +639,7 @@ interface SignOptions { signingKeyIDs?: MaybeArray; date?: Date; signingUserIDs?: MaybeArray; + signatureNotations?: MaybeArray; config?: PartialConfig; } diff --git a/test/typescript/definitions.ts b/test/typescript/definitions.ts index 3bc2f547..59f7664e 100644 --- a/test/typescript/definitions.ts +++ b/test/typescript/definitions.ts @@ -134,6 +134,14 @@ import { const textSignedObject: Message = await sign({ signingKeys: privateKeys, message: textMessage, format: 'object' }); expect(textSignedObject).to.be.instanceOf(Message); + // Sign text message (armored) + const textSignedWithNotations: string = await sign({ signingKeys: privateKeys, message: textMessage, signatureNotations: [{ + name: 'test@example.org', + value: new TextEncoder().encode('test'), + humanReadable: true + }] }); + expect(textSignedWithNotations).to.include('-----BEGIN PGP MESSAGE-----'); + // Verify signed text message (armored) const signedMessage = await readMessage({ armoredMessage: textSignedArmor }); const verifiedText = await verify({ verificationKeys: publicKeys, message: signedMessage });