Files
kiss-flixel/feedback-server/externs/node/crypto/RSAKeyPairOptions.hx

20 lines
358 B
Haxe

package node.crypto;
typedef RSAKeyPairOptions<PubF, PrivF> = {
/**
Key size in bits
**/
var modulusLength : Float;
/**
Public exponent
**/
@:optional
var publicExponent : Float;
var publicKeyEncoding : {
var type : String;
var format : PubF;
};
var privateKeyEncoding : BasePrivateKeyEncodingOptions<PrivF> & {
var type : String;
};
};