-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathopenpgp.d.ts
1168 lines (1004 loc) · 45.1 KB
/
openpgp.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Type definitions for openpgpjs
// Project: http://openpgpjs.org/
// Definitions by: Guillaume Lacasa <https://blog.lacasa.fr>
// Errietta Kostala <https://github.com/errietta>
// FlowCrypt Limited <https://flowcrypt.com>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/* tslint:disable:only-arrow-functions variable-name max-line-length no-null-keyword ban-types */
declare namespace OpenPGP {
type DataPacketType = 'utf8' | 'binary' | 'text' | 'mime';
export interface UserId {
name?: string;
email?: string;
}
export interface SessionKey {
data: Uint8Array;
algorithm: string;
}
interface BaseStream<T extends Uint8Array | string> { }
interface WebStream<T extends Uint8Array | string> extends BaseStream<T> { // copied+simplified version of ReadableStream from lib.dom.d.ts
readonly locked: boolean; getReader: Function; pipeThrough: Function; pipeTo: Function; tee: Function;
cancel(reason?: any): Promise<void>;
}
interface NodeStream<T extends Uint8Array | string> extends BaseStream<T> { // copied+simplified version of ReadableStream from @types/node/index.d.ts
readable: boolean; pipe: Function; unpipe: Function; wrap: Function;
read(size?: number): string | Uint8Array; setEncoding(encoding: string): this; pause(): this; resume(): this;
isPaused(): boolean; unshift(chunk: string | Uint8Array): void;
}
type Stream<T extends Uint8Array | string> = WebStream<T> | NodeStream<T>;
/**
* EncryptArmorOptions or EncryptBinaryOptions will be used based on armor option (boolean), defaults to armoring
*/
interface BaseEncryptOptions {
/** message to be encrypted as created by openpgp.message.fromText or openpgp.message.fromBinary */
message: message.Message;
/** (optional) array of keys or single key, used to encrypt the message */
publicKeys?: key.Key | key.Key[];
/** (optional) private keys for signing. If omitted message will not be signed */
privateKeys?: key.Key | key.Key[];
/** (optional) array of passwords or a single password to encrypt the message */
passwords?: string | string[];
/** (optional) session key in the form: { data:Uint8Array, algorithm:String } */
sessionKey?: SessionKey;
/** (optional) which compression algorithm to compress the message with, defaults to what is specified in config */
compression?: enums.compression;
/** (optional) whether to return data as a stream. Defaults to the type of stream `message` was created from, if any. */
streaming?: 'web' | 'node' | false;
/** (optional) if the signature should be detached (if true, signature will be added to returned object) */
detached?: boolean;
/** (optional) a detached signature to add to the encrypted message */
signature?: signature.Signature;
/** (optional) if the unencrypted session key should be added to returned object */
returnSessionKey?: boolean;
/** (optional) encrypt as of a certain date */
date?: Date;
/** (optional) use a key ID of 0 instead of the public key IDs */
wildcard?: boolean;
/** (optional) user ID to sign with, e.g. { name:'Steve Sender', email:'[email protected]' } */
fromUserId?: UserId;
/** (optional) user ID to encrypt for, e.g. { name:'Robert Receiver', email:'[email protected]' } */
toUserId?: UserId;
}
export type EncryptOptions = BaseEncryptOptions | EncryptArmorOptions | EncryptBinaryOptions;
export interface EncryptArmorOptions extends BaseEncryptOptions {
/** if the return values should be ascii armored or the message/signature objects */
armor: true;
}
export interface EncryptBinaryOptions extends BaseEncryptOptions {
/** if the return values should be ascii armored or the message/signature objects */
armor: false;
}
export namespace packet {
export class List<PACKET_TYPE> extends Array<PACKET_TYPE> {
[index: number]: PACKET_TYPE;
public length: number;
public read(bytes: Uint8Array): void;
public write(): Uint8Array;
public push(...packet: PACKET_TYPE[]): number;
public pop(): PACKET_TYPE;
public filter(callback: (packet: PACKET_TYPE, i: number, self: List<PACKET_TYPE>) => void): List<PACKET_TYPE>;
public filterByTag(...args: enums.packet[]): List<PACKET_TYPE>;
public forEach(callback: (packet: PACKET_TYPE, i: number, self: List<PACKET_TYPE>) => void): void;
public map<RETURN_TYPE>(callback: (packet: PACKET_TYPE, i: number, self: List<PACKET_TYPE>) => RETURN_TYPE): List<RETURN_TYPE>;
// some()
// every()
// findPacket()
// indexOfTag()
// slice()
// concat()
// fromStructuredClone()
}
function fromStructuredClone(packetClone: object): AnyPacket;
function newPacketFromTag(tag: enums.packetNames): AnyPacket;
class BasePacket {
public tag: enums.packet;
public read(bytes: Uint8Array): void;
public write(): Uint8Array;
}
class BaseKeyPacket extends BasePacket {
// fingerprint: Uint8Array|null; - not included because not recommended to use. Use getFingerprint() or getFingerprintBytes()
public algorithm: enums.publicKey;
public created: Date;
public version: number;
public expirationTimeV3: number | null;
public keyExpirationTime: number | null;
public params: object[];
public isEncrypted: boolean; // may be null, false or true
public getBitSize(): number;
public getAlgorithmInfo(): key.AlgorithmInfo;
public getFingerprint(): string;
public getFingerprintBytes(): Uint8Array | null;
public getCreationTime(): Date;
public getKeyId(): Keyid;
public isDecrypted(): boolean;
}
class BasePrimaryKeyPacket extends BaseKeyPacket {
}
export class Compressed extends BasePacket {
public tag: enums.packet.compressed;
}
export class SymEncryptedIntegrityProtected extends BasePacket {
public tag: enums.packet.symEncryptedIntegrityProtected;
}
export class SymEncryptedAEADProtected extends BasePacket {
public tag: enums.packet.symEncryptedAEADProtected;
}
export class PublicKeyEncryptedSessionKey extends BasePacket {
public tag: enums.packet.publicKeyEncryptedSessionKey;
}
export class SymEncryptedSessionKey extends BasePacket {
public tag: enums.packet.symEncryptedSessionKey;
}
export class Literal extends BasePacket {
public tag: enums.packet.literal;
}
export class PublicKey extends BasePrimaryKeyPacket {
public tag: enums.packet.publicKey;
}
export class SymmetricallyEncrypted extends BasePacket {
public tag: enums.packet.symmetricallyEncrypted;
}
export class Marker extends BasePacket {
public tag: enums.packet.marker;
}
export class PublicSubkey extends BaseKeyPacket {
public tag: enums.packet.publicSubkey;
}
export class UserAttribute extends BasePacket {
public tag: enums.packet.userAttribute;
}
export class OnePassSignature extends BasePacket {
public tag: enums.packet.onePassSignature;
public correspondingSig?: Promise<Signature>;
}
export class SecretKey extends BasePrimaryKeyPacket {
public tag: enums.packet.secretKey;
// encrypted: null | unknown[]; // Encrypted secret-key data, not meant for public use
public s2k: { type: string } | null;
public encrypt(passphrase: string): Promise<boolean>;
public decrypt(passphrase: string): Promise<true>;
}
export class Userid extends BasePacket {
public tag: enums.packet.userid;
public userid: string;
}
export class SecretSubkey extends BaseKeyPacket {
public tag: enums.packet.secretSubkey;
// encrypted: null | unknown[]; // Encrypted secret-key data, not meant for public use
public s2k: { type: string } | null;
public encrypt(passphrase: string): Promise<boolean>;
public decrypt(passphrase: string): Promise<true>;
}
export class Signature extends BasePacket {
public tag: enums.packet.signature;
public version: number;
public signatureType: null | number;
public hashAlgorithm: null | number;
public publicKeyAlgorithm: null | number;
public signatureData: null | Uint8Array;
public unhashedSubpackets: null | Uint8Array;
public signedHashValue: null | Uint8Array;
public created: Date;
public signatureExpirationTime: null | number;
public signatureNeverExpires: boolean;
public exportable: null | boolean;
public trustLevel: null | number;
public trustAmount: null | number;
public regularExpression: null | number;
public revocable: null | boolean;
public keyExpirationTime: null | number;
public keyNeverExpires: null | boolean;
public preferredSymmetricAlgorithms: null | number[];
public revocationKeyClass: null | number;
public revocationKeyAlgorithm: null | number;
public revocationKeyFingerprint: null | Uint8Array;
public issuerKeyId: Keyid;
public notation: null | { [name: string]: string };
public preferredHashAlgorithms: null | number[];
public preferredCompressionAlgorithms: null | number[];
public keyServerPreferences: null | number[];
public preferredKeyServer: null | string;
public isPrimaryUserID: null | boolean;
public policyURI: null | string;
public keyFlags: null | number[];
public signersUserId: null | string;
public reasonForRevocationFlag: null | number;
public reasonForRevocationString: null | string;
public features: null | number[];
public signatureTargetPublicKeyAlgorithm: null | number;
public signatureTargetHashAlgorithm: null | number;
public signatureTargetHash: null | string;
public embeddedSignature: null | Signature;
public issuerKeyVersion: null | number;
public issuerFingerprint: null | Uint8Array;
public preferredAeadAlgorithms: null | Uint8Array;
public verified: null | boolean;
public revoked: null | boolean;
public sign(key: SecretKey | SecretSubkey, data: Uint8Array): true;
public isExpired(date?: Date): boolean;
public verify(key: PublicKey | SecretKey, signatureType: OpenPGP.enums.signature, data: any, detached?: boolean, streaming?: boolean): Promise<boolean>;
public getExpirationTime(): Date | typeof Infinity;
}
export class Trust extends BasePacket {
public tag: enums.packet.trust;
}
export type AnyPacket = Compressed | SymEncryptedIntegrityProtected | SymEncryptedAEADProtected | PublicKeyEncryptedSessionKey | SymEncryptedSessionKey | Literal
| PublicKey | SymmetricallyEncrypted | Marker | PublicSubkey | UserAttribute | OnePassSignature | SecretKey | Userid | SecretSubkey | Signature | Trust;
export type AnySecretPacket = SecretKey | SecretSubkey;
export type AnyKeyPacket = PublicKey | SecretKey | PublicSubkey | SecretSubkey;
}
export interface EncryptArmorResult {
data: string;
signature?: string;
}
export interface EncryptBinaryResult {
message: message.Message;
signature?: signature.Signature;
}
export type EncryptResult = EncryptArmorResult | EncryptBinaryResult;
export interface SignArmorResult {
data: string | Stream<string>;
signature: string | Stream<string>;
}
export interface SignBinaryResult {
message: message.Message | cleartext.CleartextMessage;
signature: signature.Signature;
}
export type SignResult = SignArmorResult | SignBinaryResult;
export interface DecryptOptions {
/** the message object with the encrypted data */
message: message.Message;
/** (optional) private keys with decrypted secret key data or session key */
privateKeys?: key.Key | key.Key[];
/** (optional) passwords to decrypt the message */
passwords?: string | string[];
/** (optional) session keys in the form: { data:Uint8Array, algorithm:String } */
sessionKeys?: SessionKey | SessionKey[];
/** (optional) array of public keys or single key, to verify signatures */
publicKeys?: key.Key | key.Key[];
/** (optional) whether to return data as a string(Stream) or Uint8Array(Stream). If 'utf8' (the default), also normalize newlines. */
format?: string;
/** (optional) whether to return data as a stream. Defaults to the type of stream `message` was created from, if any. */
streaming?: 'web' | 'node' | false;
/** (optional) detached signature for verification */
signature?: signature.Signature;
}
export interface SignOptions {
message: cleartext.CleartextMessage | message.Message;
privateKeys?: key.Key | key.Key[];
armor?: boolean;
streaming?: 'web' | 'node' | false;
dataType?: DataPacketType;
detached?: boolean;
date?: Date;
fromUserId?: UserId;
}
export interface KeyContainer {
key: key.Key;
}
export interface KeyPair extends KeyContainer {
privateKeyArmored: string;
publicKeyArmored: string;
}
export interface KeyOptions {
userIds: UserId[]; // generating a key with no user defined results in error
passphrase?: string;
numBits?: number;
keyExpirationTime?: number;
curve?: key.EllipticCurveName;
date?: Date;
subkeys?: KeyOptions[];
}
/**
* Intended for internal use with openpgp.key.generate()
* It's recommended that users choose openpgp.generateKey() that requires KeyOptions instead
*/
export interface FullKeyOptions {
userIds: UserId[];
passphrase?: string;
numBits?: number;
keyExpirationTime?: number;
curve?: key.EllipticCurveName;
date?: Date;
subkeys: KeyOptions[]; // required unline KeyOptions.subkeys
}
export interface Keyid {
bytes: string;
}
export interface DecryptMessageResult {
data: Uint8Array | string;
signatures: signature.Signature[];
filename: string;
}
export interface OpenPGPWorker {
randomCallback(): void;
configure(config: any): void;
seedRandom(buffer: ArrayBuffer): void;
delegate(id: number, method: string, options: any): void;
response(event: any): void;
}
export interface WorkerOptions {
path?: string;
n?: number;
workers?: OpenPGPWorker[];
config?: any;
}
export class AsyncProxy {
public workers: OpenPGPWorker[];
constructor(options: WorkerOptions);
public getId(): number;
public seedRandom(workerId: number, size: number): Promise<void>;
public terminate(): void;
public delegate(method: string, options: any): void;
}
/**
* Set the path for the web worker script and create an instance of the async proxy
* @param {String} path relative path to the worker scripts, default: 'openpgp.worker.js'
* @param {Number} n number of workers to initialize
* @param {Array<Object>} workers alternative to path parameter: web workers initialized with 'openpgp.worker.js'
*/
export function initWorker(options: WorkerOptions): boolean;
/**
* Returns a reference to the async proxy if the worker was initialized with openpgp.initWorker()
* @returns {module:worker/async_proxy.AsyncProxy|null} the async proxy or null if not initialized
*/
export function getWorker(): AsyncProxy;
/**
* Cleanup the current instance of the web worker.
*/
export function destroyWorker(): void;
/**
* Encrypts message text/data with public keys, passwords or both at once. At least either public keys or passwords
* must be specified. If private keys are specified, those will be used to sign the message.
* @param {EncryptOptions} options See `EncryptOptions`
* @returns {Promise<EncryptResult>} Promise of `EncryptResult` (and optionally signed message) in the form:
* {data: ASCII armored message if 'armor' is true;
* message: full Message object if 'armor' is false, signature: detached signature if 'detached' is true}
* @async
* @static
*/
export function encrypt(options: EncryptBinaryOptions): Promise<EncryptBinaryResult>;
export function encrypt(options: EncryptArmorOptions | BaseEncryptOptions): Promise<EncryptArmorResult>;
/**
* Signs a cleartext message.
* @param {String | Uint8Array} data cleartext input to be signed
* @param {utf8|binary|text|mime} dataType (optional) data packet type
* @param {Key|Array<Key>} privateKeys array of keys or single key with decrypted secret key data to sign cleartext
* @param {Boolean} armor (optional) if the return value should be ascii armored or the message object
* @param {Boolean} detached (optional) if the return value should contain a detached signature
* @param {Date} date (optional) override the creation date signature
* @param {Object} fromUserId (optional) user ID to sign with, e.g. { name:'Steve Sender', email:'[email protected]' }
* @returns {Promise<Object>} signed cleartext in the form:
* {data: ASCII armored message if 'armor' is true;
* message: full Message object if 'armor' is false, signature: detached signature if 'detached' is true}
* @async
* @static
*/
export function sign(options: SignOptions): Promise<SignResult>;
/**
* Decrypts a message with the user's private key, a session key or a password. Either a private key;
* a session key or a password must be specified.
* @param {DecryptOptions} options see `DecryptOptions`
* @returns {Promise<DecryptMessageResult>} Promise of `DecryptMessageResult` and verified message in the form:
* { data:Uint8Array|String, filename:String, signatures:[{ keyid:String, valid:Boolean }] }
* @async
* @static
*/
export function decrypt(options: DecryptOptions): Promise<DecryptMessageResult>;
/**
* Generates a new OpenPGP key pair. Supports RSA and ECC keys. Primary and subkey will be of same type.
* @param {Array<Object>} userIds array of user IDs e.g. [{ name:'Phil Zimmermann', email:'[email protected]' }]
* @param {String} passphrase (optional) The passphrase used to encrypt the resulting private key
* @param {Number} numBits (optional) number of bits for RSA keys: 2048 or 4096.
* @param {Number} keyExpirationTime (optional) The number of seconds after the key creation time that the key expires
* @param {String} curve (optional) elliptic curve for ECC keys:
* curve25519, p256, p384, p521, secp256k1;
* brainpoolP256r1, brainpoolP384r1, or brainpoolP512r1.
* @param {Date} date (optional) override the creation date of the key and the key signatures
* @param {Array<Object>} subkeys (optional) options for each subkey, default to main key options. e.g. [{sign: true, passphrase: '123'}]
* sign parameter defaults to false, and indicates whether the subkey should sign rather than encrypt
* @returns {Promise<Object>} The generated key object in the form:
* { key:Key, privateKeyArmored:String, publicKeyArmored:String }
* @async
* @static
*/
export function generateKey(options: KeyOptions): Promise<KeyPair>;
/**
* Reformats signature packets for a key and rewraps key object.
* @param {Key} privateKey private key to reformat
* @param {Array<Object>} userIds array of user IDs e.g. [{ name:'Phil Zimmermann', email:'[email protected]' }]
* @param {String} passphrase (optional) The passphrase used to encrypt the resulting private key
* @param {Number} keyExpirationTime (optional) The number of seconds after the key creation time that the key expires
* @returns {Promise<Object>} The generated key object in the form:
* { key:Key, privateKeyArmored:String, publicKeyArmored:String }
* @async
* @static
*/
export function reformatKey(options: {
privateKey: key.Key;
userIds?: (string | UserId)[];
passphrase?: string;
keyExpirationTime?: number;
}): Promise<KeyPair>;
/**
* Unlock a private key with your passphrase.
* @param {Key} privateKey the private key that is to be decrypted
* @param {String|Array<String>} passphrase the user's passphrase(s) chosen during key generation
* @returns {Promise<Object>} the unlocked key object in the form: { key:Key }
* @async
*/
export function decryptKey(options: {
privateKey: key.Key;
passphrase?: string | string[];
}): Promise<KeyContainer>;
export function encryptKey(options: {
privateKey: key.Key;
passphrase?: string
}): Promise<KeyContainer>;
export namespace armor {
/** Armor an OpenPGP binary packet block
* @param messagetype type of the message
* @param body
* @param partindex
* @param parttotal
*/
function encode(messagetype: enums.armor, body: object, partindex?: number, parttotal?: number, customComment?: string): string;
/** DeArmor an OpenPGP armored message; verify the checksum and return the encoded bytes
*
* @param text OpenPGP armored message
*/
function decode(text: string): Promise<{ type: enums.armor, data: ReadableStream<Uint8Array> }>;
}
export namespace cleartext {
/** Class that represents an OpenPGP cleartext signed message.
*/
interface CleartextMessage {
/** Returns ASCII armored text of cleartext signed message
*/
armor(): string;
/** Returns the key IDs of the keys that signed the cleartext message
*/
getSigningKeyIds(): Array<Keyid>;
/** Get cleartext
*/
getText(): string;
/** Sign the cleartext message
*
* @param privateKeys private keys with decrypted secret key data for signing
*/
sign(privateKeys: Array<key.Key>): void;
/** Verify signatures of cleartext signed message
* @param keys array of keys to verify signatures
*/
verify(keys: key.Key[], date?: Date, streaming?: boolean): Promise<message.Verification[]>;
}
/**
* reads an OpenPGP cleartext signed message and returns a CleartextMessage object
* @param armoredText text to be parsed
* @returns new cleartext message object
* @async
* @static
*/
function readArmored(armoredText: string): Promise<CleartextMessage>;
function fromText(text: string): CleartextMessage;
}
export namespace config {
let prefer_hash_algorithm: enums.hash;
let encryption_cipher: enums.symmetric;
let compression: enums.compression;
let show_version: boolean;
let show_comment: boolean;
let integrity_protect: boolean;
let debug: boolean;
let deflate_level: number;
let aead_protect: boolean;
let ignore_mdc_error: boolean;
let checksum_required: boolean;
let rsa_blinding: boolean;
let password_collision_check: boolean;
let revocations_expire: boolean;
let use_native: boolean;
let zero_copy: boolean;
let tolerant: boolean;
let versionstring: string;
let commentstring: string;
let keyserver: string;
let node_store: string;
let allow_insecure_decryption_with_signing_keys: boolean;
}
export namespace crypto {
interface Mpi {
data: number;
read(input: string): number;
write(): string;
}
/** Generating a session key for the specified symmetric algorithm
* @param algo Algorithm to use
*/
function generateSessionKey(algo: enums.symmetric): string;
/** generate random byte prefix as string for the specified algorithm
* @param algo Algorithm to use
*/
function getPrefixRandom(algo: enums.symmetric): string;
/** Returns the number of integers comprising the private key of an algorithm
* @param algo The public key algorithm
*/
function getPrivateMpiCount(algo: enums.symmetric): number;
/** Decrypts data using the specified public key multiprecision integers of the private key, the specified secretMPIs of the private key and the specified algorithm.
@param algo Algorithm to be used
@param publicMPIs Algorithm dependent multiprecision integers of the public key part of the private key
@param secretMPIs Algorithm dependent multiprecision integers of the private key used
@param data Data to be encrypted as MPI
*/
function publicKeyDecrypt(algo: enums.publicKey, publicMPIs: Array<Mpi>, secretMPIs: Array<Mpi>, data: Mpi): Mpi;
/** Encrypts data using the specified public key multiprecision integers and the specified algorithm.
@param algo Algorithm to be used
@param publicMPIs Algorithm dependent multiprecision integers
@param data Data to be encrypted as MPI
*/
function publicKeyEncrypt(algo: enums.publicKey, publicMPIs: Array<Mpi>, data: Mpi): Array<Mpi>;
namespace cfb {
/** This function decrypts a given plaintext using the specified blockcipher to decrypt a message
@param cipherfn the algorithm cipher class to decrypt data in one block_size encryption
@param key binary string representation of key to be used to decrypt the ciphertext. This will be passed to the cipherfn
@param ciphertext to be decrypted provided as a string
@param resync a boolean value specifying if a resync of the IV should be used or not. The encrypteddatapacket uses the "old" style with a resync. Decryption within an encryptedintegrityprotecteddata packet is not resyncing the IV.
*/
function decrypt(cipherfn: string, key: string, ciphertext: string, resync: boolean): string;
/** This function encrypts a given with the specified prefixrandom using the specified blockcipher to encrypt a message
@param prefixrandom random bytes of block_size length provided as a string to be used in prefixing the data
@param cipherfn the algorithm cipher class to encrypt data in one block_size encryption
@param plaintext data to be encrypted provided as a string
@param key binary string representation of key to be used to encrypt the plaintext. This will be passed to the cipherfn
@param resync a boolean value specifying if a resync of the IV should be used or not. The encrypteddatapacket uses the "old" style with a resync. Encryption within an encryptedintegrityprotecteddata packet is not resyncing the IV.
*/
function encrypt(prefixrandom: string, cipherfn: string, plaintext: string, key: string, resync: boolean): string;
/** Decrypts the prefixed data for the Modification Detection Code (MDC) computation
@param cipherfn cipherfn.encrypt Cipher function to use
@param key binary string representation of key to be used to check the mdc This will be passed to the cipherfn
@param ciphertext The encrypted data
*/
function mdc(cipherfn: object, key: string, ciphertext: string): string;
}
namespace hash {
/** Create a hash on the specified data using the specified algorithm
@param algo Hash algorithm type
@param data Data to be hashed
*/
function digest(algo: enums.hash, data: Uint8Array): Promise<Uint8Array>;
/** Returns the hash size in bytes of the specified hash algorithm type
@param algo Hash algorithm type
*/
function getHashByteLength(algo: enums.hash): number;
}
namespace random {
/** Retrieve secure random byte string of the specified length
@param length Length in bytes to generate
*/
function getRandomBytes(length: number): Promise<Uint8Array>;
}
namespace signature {
/** Create a signature on data using the specified algorithm
@param hash_algo hash Algorithm to use
@param algo Asymmetric cipher algorithm to use
@param publicMPIs Public key multiprecision integers of the private key
@param secretMPIs Private key multiprecision integers which is used to sign the data
@param data Data to be signed
*/
function sign(hash_algo: enums.hash, algo: enums.publicKey, publicMPIs: Array<Mpi>, secretMPIs: Array<Mpi>, data: string): Mpi;
/**
@param algo public Key algorithm
@param hash_algo Hash algorithm
@param msg_MPIs Signature multiprecision integers
@param publickey_MPIs Public key multiprecision integers
@param data Data on where the signature was computed on
*/
function verify(algo: enums.publicKey, hash_algo: enums.hash, msg_MPIs: Array<Mpi>, publickey_MPIs: Array<Mpi>, data: string): boolean;
}
}
export namespace enums {
function read(type: typeof armor, e: armor): armorNames | string | any;
function read(type: typeof compression, e: compression): compressionNames | string | any;
function read(type: typeof hash, e: hash): hashNames | string | any;
function read(type: typeof packet, e: packet): packetNames | string | any;
function read(type: typeof publicKey, e: publicKey): publicKeyNames | string | any;
function read(type: typeof symmetric, e: symmetric): symmetricNames | string | any;
function read(type: typeof keyStatus, e: keyStatus): keyStatusNames | string | any;
function read(type: typeof keyFlags, e: keyFlags): keyFlagsNames | string | any;
function read(type: typeof signature, e: signature): signatureNames | string | any;
export type armorNames = 'multipart_section' | 'multipart_last' | 'signed' | 'message' | 'public_key' | 'private_key';
enum armor {
multipart_section = 0,
multipart_last = 1,
signed = 2,
message = 3,
public_key = 4,
private_key = 5,
signature = 6,
}
enum reasonForRevocation {
no_reason = 0, // No reason specified (key revocations or cert revocations)
key_superseded = 1, // Key is superseded (key revocations)
key_compromised = 2, // Key material has been compromised (key revocations)
key_retired = 3, // Key is retired and no longer used (key revocations)
userid_invalid = 32, // User ID information is no longer valid (cert revocations)
}
export type compressionNames = 'uncompressed' | 'zip' | 'zlib' | 'bzip2';
enum compression {
uncompressed = 0,
zip = 1,
zlib = 2,
bzip2 = 3,
}
export type hashNames = 'md5' | 'sha1' | 'ripemd' | 'sha256' | 'sha384' | 'sha512' | 'sha224';
enum hash {
md5 = 1,
sha1 = 2,
ripemd = 3,
sha256 = 8,
sha384 = 9,
sha512 = 10,
sha224 = 11,
}
export type packetNames = 'publicKeyEncryptedSessionKey' | 'signature' | 'symEncryptedSessionKey' | 'onePassSignature' | 'secretKey' | 'publicKey'
| 'secretSubkey' | 'compressed' | 'symmetricallyEncrypted' | 'marker' | 'literal' | 'trust' | 'userid' | 'publicSubkey' | 'userAttribute'
| 'symEncryptedIntegrityProtected' | 'modificationDetectionCode' | 'symEncryptedAEADProtected';
enum packet {
publicKeyEncryptedSessionKey = 1,
signature = 2,
symEncryptedSessionKey = 3,
onePassSignature = 4,
secretKey = 5,
publicKey = 6,
secretSubkey = 7,
compressed = 8,
symmetricallyEncrypted = 9,
marker = 10,
literal = 11,
trust = 12,
userid = 13,
publicSubkey = 14,
userAttribute = 17,
symEncryptedIntegrityProtected = 18,
modificationDetectionCode = 19,
symEncryptedAEADProtected = 20,
}
export type signatureNames = 'binary' | 'text' | 'standalone' | 'cert_generic' | 'cert_persona' | 'cert_casual' | 'cert_positive' | 'cert_revocation' | 'subkey_binding' | 'key_binding' | 'key' | 'key_revocation' | 'subkey_revocation' | 'timestamp' | 'third_party';
enum signature {
binary = 0,
text = 1,
standalone = 2,
cert_generic = 16,
cert_persona = 17,
cert_casual = 18,
cert_positive = 19,
cert_revocation = 48,
subkey_binding = 24,
key_binding = 25,
key = 31,
key_revocation = 32,
subkey_revocation = 40,
timestamp = 64,
third_party = 80
}
export type publicKeyNames = 'rsa_encrypt_sign' | 'rsa_encrypt' | 'rsa_sign' | 'elgamal' | 'dsa' | 'ecdh' | 'ecdsa' | 'eddsa' | 'aedh' | 'aedsa';
enum publicKey {
rsa_encrypt_sign = 1,
rsa_encrypt = 2,
rsa_sign = 3,
elgamal = 16,
dsa = 17,
ecdh = 18,
ecdsa = 19,
eddsa = 22,
aedh = 23,
aedsa = 24,
}
export type symmetricNames = 'plaintext' | 'idea' | 'tripledes' | 'cast5' | 'blowfish' | 'aes128' | 'aes192' | 'aes256' | 'twofish';
enum symmetric {
plaintext = 0,
idea = 1,
tripledes = 2,
cast5 = 3,
blowfish = 4,
aes128 = 7,
aes192 = 8,
aes256 = 9,
twofish = 10,
}
export type keyStatusNames = 'invalid' | 'expired' | 'revoked' | 'valid' | 'no_self_cert';
enum keyStatus {
invalid = 0,
expired = 1,
revoked = 2,
valid = 3,
no_self_cert = 4,
}
export type keyFlagsNames = 'certify_keys' | 'sign_data' | 'encrypt_communication' | 'encrypt_storage' | 'split_private_key' | 'authentication'
| 'shared_private_key';
enum keyFlags {
certify_keys = 1,
sign_data = 2,
encrypt_communication = 4,
encrypt_storage = 8,
split_private_key = 16,
authentication = 32,
shared_private_key = 128,
}
}
export namespace key {
// callable constructor
export function Key(this: Key, packetlist: packet.List<packet.BasePacket>): Key;
export type EllipticCurveName = 'curve25519' | 'p256' | 'p384' | 'p521' | 'secp256k1' | 'brainpoolP256r1' | 'brainpoolP384r1' | 'brainpoolP512r1';
/** Class that represents an OpenPGP key. Must contain a primary key. Can contain additional subkeys, signatures, user ids, user attributes.
*/
class Key {
public primaryKey: packet.PublicKey | packet.SecretKey;
public subKeys: SubKey[];
public users: User[];
public revocationSignatures: packet.Signature[];
public keyPacket: packet.PublicKey | packet.SecretKey;
constructor(packetlist: packet.List<packet.BasePacket>);
public armor(): string;
public decrypt(passphrase: string | string[], keyId?: Keyid): Promise<boolean>;
public encrypt(passphrase: string | string[]): Promise<void>;
public getExpirationTime(capability?: 'encrypt' | 'encrypt_sign' | 'sign' | null, keyId?: Keyid | null, userId?: UserId | null): Promise<Date | typeof Infinity | null>; // Returns null if `capabilities` is passed and the key does not have the specified capabilities or is revoked or invalid.
public getKeyIds(): Keyid[];
public getPrimaryUser(): Promise<PrimaryUser>; // throws on err
public getUserIds(): string[];
public isPrivate(): boolean;
public isPublic(): boolean;
public toPacketlist(): packet.BasePacket[];
public toPublic(): Key;
public update(key: Key): void;
public verifyPrimaryKey(): Promise<void>; // throws on err
public isRevoked(): Promise<boolean>;
public revoke(reason: { flag?: enums.reasonForRevocation; string?: string; }, date?: Date): Promise<Key>;
public getRevocationCertificate(): Promise<Stream<string> | string | undefined>;
public getEncryptionKey(keyid?: Keyid | null, date?: Date, userId?: UserId | null): Promise<key.Key | key.SubKey | null>;
public getSigningKey(keyid?: Keyid | null, date?: Date, userId?: UserId | null): Promise<key.Key | key.SubKey | null>;
public getKeys(keyId?: Keyid): (Key | SubKey)[];
public isDecrypted(): boolean;
public isFullyEncrypted(): boolean;
public isFullyDecrypted(): boolean;
public isPacketDecrypted(keyId: Keyid): boolean;
public getFingerprint(): string;
public getCreationTime(): Date;
public getAlgorithmInfo(): AlgorithmInfo;
public getKeyId(): Keyid;
}
class SubKey {
public subKey: packet.SecretSubkey | packet.PublicSubkey;
public keyPacket: packet.SecretKey;
public bindingSignatures: packet.Signature[];
public revocationSignatures: packet.Signature[];
constructor(subKeyPacket: packet.SecretSubkey | packet.PublicSubkey);
public verify(primaryKey: packet.PublicKey | packet.SecretKey): Promise<enums.keyStatus>;
public isDecrypted(): boolean;
public getFingerprint(): string;
public getCreationTime(): Date;
public getAlgorithmInfo(): AlgorithmInfo;
public getKeyId(): Keyid;
}
export interface User {
userId: packet.Userid | null;
userAttribute: packet.UserAttribute | null;
selfCertifications: packet.Signature[];
otherCertifications: packet.Signature[];
revocationSignatures: packet.Signature[];
}
export interface PrimaryUser {
index: number;
user: User;
selfCertification: packet.Signature;
}
interface KeyResult {
keys: Key[];
err?: Error[];
}
type AlgorithmInfo = {
algorithm: enums.publicKeyNames;
bits: number;
};
/** Generates a new OpenPGP key. Currently only supports RSA keys. Primary and subkey will be of same type.
* @param options
*/
function generate(options: FullKeyOptions): Promise<Key>;
/** Reads an OpenPGP armored text and returns one or multiple key objects
@param armoredText text to be parsed
*/
function readArmored(armoredText: string): Promise<KeyResult>;
/** Reads an OpenPGP binary data and returns one or multiple key objects
@param data to be parsed
*/
function read(data: Uint8Array): Promise<KeyResult>;
}
export namespace signature {
class Signature {
public packets: packet.List<packet.Signature>;
constructor(packetlist: packet.List<packet.Signature>);
public armor(): string;
}
/** reads an OpenPGP armored signature and returns a signature object
@param armoredText text to be parsed
*/
function readArmored(armoredText: string): Promise<Signature>;
/** reads an OpenPGP signature as byte array and returns a signature object
@param input binary signature
*/
function read(input: Uint8Array): Promise<Signature>;
}
export namespace message {
/** Class that represents an OpenPGP message. Can be an encrypted message, signed message, compressed message or literal message
*/
class Message {
public packets: packet.List<packet.AnyPacket>;
constructor(packetlist: packet.List<packet.AnyPacket>);
/** Returns ASCII armored text of message
*/
public armor(): string;
/** Decrypt the message
@param privateKey private key with decrypted secret data
*/
public decrypt(privateKeys?: key.Key[] | null, passwords?: string[] | null, sessionKeys?: SessionKey[] | null, streaming?: boolean): Promise<Message>;
/** Encrypt the message
@param keys array of keys, used to encrypt the message
*/
public encrypt(keys: key.Key[]): Promise<Message>;
/** Returns the key IDs of the keys to which the session key is encrypted
*/
public getEncryptionKeyIds(): Keyid[];
/** Get literal data that is the body of the message
*/
public getLiteralData(): Uint8Array | null | Stream<Uint8Array>;
/** Returns the key IDs of the keys that signed the message
*/
public getSigningKeyIds(): Keyid[];
/** Get literal data as text
*/
public getText(): string | null | Stream<string>;
public getFilename(): string | null;
/** Sign the message (the literal data packet of the message)
@param privateKey private keys with decrypted secret key data for signing
*/
public sign(privateKey: key.Key[]): Promise<Message>;
/** Unwrap compressed message
*/
public unwrapCompressed(): Message;