Lines Matching refs:binary
4 … describe how to convert binary data into a symmetric key (**SymKey**). That is, convert a piece o…
11 1. Obtain the 3DES key binary data and encapsulate it into a **DataBlob** object.
15 …architecture-kit/js-apis-cryptoFramework.md#convertkey-1) to convert the binary data into a symmet…
17 …rypto-architecture-kit/js-apis-cryptoFramework.md#getencoded) to obtain the binary data of the key.
19 - Example: Convert binary data into a 192-bit 3DES key (using callback-based APIs).
48 …let encodedKey = key.getEncoded(); // Obtain the binary data of the symmetric key and output the d…
77 …let encodedKey = key.getEncoded(); // Obtain the binary data of the symmetric key and output the d…
86 1. Obtain the HMAC binary key and encapsulate it into a **DataBlob** object.
90 …architecture-kit/js-apis-cryptoFramework.md#convertkey-1) to convert the binary data into a symmet…
92 …rypto-architecture-kit/js-apis-cryptoFramework.md#getencoded) to obtain the binary data of the key.
94 - Example: Convert binary data into an HMAC key in await mode.