forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselfsigned_v2.x.x.js
101 lines (92 loc) · 2.35 KB
/
selfsigned_v2.x.x.js
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
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict-local
* @format
* @oncall react_native
*/
declare module 'selfsigned' {
declare interface SelfsignedOptions {
/**
* The number of days before expiration
*
* @default 365 */
days?: number;
/**
* The date before which the certificate should not be valid
*
* @default now */
notBeforeDate?: Date;
/**
* the size for the private key in bits
* @default 1024
*/
keySize?: number;
/**
* additional extensions for the certificate
*/
extensions?: mixed[];
/**
* The signature algorithm sha256 or sha1
* @default "sha1"
*/
algorithm?: string;
/**
* include PKCS#7 as part of the output
* @default false
*/
pkcs7?: boolean;
/**
* generate client cert signed by the original key
* @default false
*/
clientCertificate?: boolean;
/**
* client certificate's common name
* @default "John Doe jdoe123"
*/
clientCertificateCN?: string;
/**
* the size for the client private key in bits
* @default 1024
*/
clientCertificateKeySize?: number;
}
declare interface GenerateResult {
private: string;
public: string;
cert: string;
fingerprint: string;
}
declare export function generate(
attrs?: pki$CertificateField[],
opts?: SelfsignedOptions,
): GenerateResult;
declare export function generate(
attrs?: pki$CertificateField[],
opts?: SelfsignedOptions,
/** Optional callback, if not provided the generation is synchronous */
done?: (err: void | Error, result: GenerateResult) => mixed,
): void;
// definitions from node-forge's `pki` and `asn1` namespaces
declare interface pki$CertificateFieldOptions {
name?: string | void;
type?: string | void;
shortName?: string | void;
}
declare enum asn1$Class {
UNIVERSAL = 0x00,
APPLICATION = 0x40,
CONTEXT_SPECIFIC = 0x80,
PRIVATE = 0xc0,
}
declare interface pki$CertificateField extends pki$CertificateFieldOptions {
valueConstructed?: boolean | void;
valueTagClass?: asn1$Class | void;
value?: mixed[] | string | void;
extensions?: mixed[] | void;
}
}