importKey

open fun importKey(format: String, keyData: ArrayBuffer, algorithm: String, extractable: Boolean, keyUsages: Array<String>): Promise<CryptoKey>
open fun importKey(format: String, keyData: ArrayBuffer, algorithm: SubtleCryptoImportKeyAlgorithm, extractable: Boolean, keyUsages: Array<String>): Promise<CryptoKey>
open fun importKey(format: String, keyData: ArrayBufferView, algorithm: String, extractable: Boolean, keyUsages: Array<String>): Promise<CryptoKey>
open fun importKey(format: String, keyData: ArrayBufferView, algorithm: SubtleCryptoImportKeyAlgorithm, extractable: Boolean, keyUsages: Array<String>): Promise<CryptoKey>
open fun importKey(format: String, keyData: JsonWebKey, algorithm: String, extractable: Boolean, keyUsages: Array<String>): Promise<CryptoKey>
open fun importKey(format: String, keyData: JsonWebKey, algorithm: SubtleCryptoImportKeyAlgorithm, extractable: Boolean, keyUsages: Array<String>): Promise<CryptoKey>