process method

Deprecated. Requests that the current CryptoOperation cryptographically process the given data.

Warning  As of Microsoft Edge, CryptoOperation has been replaced by a Promise object as the return value for cryptography operations. See Web Cryptography API updates for more info.
IE11

 

Syntax

CryptoOperation.process(buffer);

Parameters

buffer [in]

Type: ArrayBufferView

The data to be transformed by the cryptographic operation.

Return value

This method does not return a value.

Remarks

The process method adds the data associated with the buffer parameter to a first-in, first-out cryptographic processing queue. The data in this queue is processed asynchronously.

See also

CryptoOperation

 

 

Show: