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

11 lines
236 B
Haxe

package node.crypto;
typedef ED25519KeyPairOptions<PubF, PrivF> = {
var publicKeyEncoding : {
var type : String;
var format : PubF;
};
var privateKeyEncoding : BasePrivateKeyEncodingOptions<PrivF> & {
var type : String;
};
};