13 lines
233 B
Haxe
13 lines
233 B
Haxe
package node.tls;
|
|
|
|
typedef PxfObject = {
|
|
/**
|
|
PFX or PKCS12 encoded private key and certificate chain.
|
|
**/
|
|
var buf : ts.AnyOf2<String, node.buffer.Buffer>;
|
|
/**
|
|
Optional passphrase.
|
|
**/
|
|
@:optional
|
|
var passphrase : String;
|
|
}; |