JavaScript SubtleCrypto : Object
      Provides methods to perform cryptographic operations such as encrypting, decrypting and hashing. Returned by 
    crypto.subtle.
      
    Instance Methods
          deriveKey(algorithm : Object, baseKey : Key, derivedKeyType : Object, extractable : Boolean, keyUsages : Array<KeyUsage>) : Promise
          
          
        
        
    importKey(format : KeyFormat, keyData : ArrayBufferView, algorithm : Object, extractable : Boolean, keyUsages : Array<KeyUsage>) : Promise
    
  
  
    unwrapKey(format : KeyFormat, wrappedKey : ArrayBufferView, unwrappingKey : Key, unwrapAlgorithm : Object, unwrappedKeyAlgorithm : Object, extractable : Boolean, keyUsages : Array<KeyUsage>) : Promise
    
    
  
  
    verify(algorithm : String, key : Key, signature : ArrayBufferView, data : ArrayBufferView) : Promise
  
  
  Copyright © PUBLIC Contributors