16 lines
237 B
Haxe
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;
|
|
}; |