-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import { pki } from 'node-forge' | ||
|
||
declare interface SelfsignedOptions { | ||
/** | ||
* The number of days before expiration | ||
* | ||
* @default 365 */ | ||
days?: number | ||
/** | ||
* the size for the private key in bits | ||
* @default 1024 | ||
*/ | ||
keySize?: number | ||
/** | ||
* additional extensions for the certificate | ||
*/ | ||
extensions?: string[] | ||
/** | ||
* 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?: undefined | ||
/** | ||
* client certificate's common name | ||
* @default "John Doe jdoe123" | ||
*/ | ||
clientCertificateCN?: string | ||
} | ||
|
||
declare interface GenerateResult { | ||
private: string | ||
public: string | ||
cert: string | ||
fingerprint: string | ||
} | ||
|
||
declare function generate( | ||
attrs?: pki.CertificateField[], | ||
opts?: SelfsignedOptions | ||
): GenerateResult | ||
|
||
declare function generate( | ||
attrs?: pki.CertificateField[], | ||
opts?: SelfsignedOptions, | ||
/** Optional callback, if not provided the generation is synchronous */ | ||
done?: (err: undefined | Error, result: GenerateResult) => any | ||
): void |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters