property
tls.BunConnectionOptions.key
key?: string | TypedArray<ArrayBufferLike> | Buffer<ArrayBufferLike> | BunFile | unknown[]
Private keys in PEM format. PEM keys may be encrypted. Multiple keys using different algorithms can be provided either as an array of unencrypted key strings or buffers, or as an array of objects in the form {pem: <string|buffer>[, passphrase: <string>]}. The object form can only occur in an array, and object.passphrase is optional. Encrypted keys are decrypted with object.passphrase if provided, otherwise with options.passphrase.