Files
kiss-flixel/feedback-server/externs/node/tls/CipherNameAndProtocol.hx

16 lines
237 B
Haxe

package node.tls;
typedef CipherNameAndProtocol = {
/**
The cipher name.
**/
var name : String;
/**
SSL/TLS protocol version.
**/
var version : String;
/**
IETF name for the cipher suite.
**/
var standardName : String;
};