11 lines
365 B
Haxe
11 lines
365 B
Haxe
package js.html;
|
|
|
|
/**
|
|
The CryptoKeyPair dictionary of the Web Crypto API represents a key pair for an asymmetric cryptography algorithm, also known as a public-key algorithm.
|
|
**/
|
|
@:native("CryptoKeyPair") extern class CryptoKeyPair {
|
|
function new();
|
|
var privateKey : js.html.CryptoKey;
|
|
var publicKey : js.html.CryptoKey;
|
|
static var prototype : CryptoKeyPair;
|
|
} |