11 lines
235 B
Haxe
11 lines
235 B
Haxe
package node.crypto;
|
|
|
|
typedef X25519KeyPairOptions<PubF, PrivF> = {
|
|
var publicKeyEncoding : {
|
|
var type : String;
|
|
var format : PubF;
|
|
};
|
|
var privateKeyEncoding : BasePrivateKeyEncodingOptions<PrivF> & {
|
|
var type : String;
|
|
};
|
|
}; |