Lines Matching refs:Sign
14 …esign) with the string parameter **'RSA1024|PKCS1|SHA256'** to create a **Sign** instance. The key…
16 3. Use [Sign.init](../../reference/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#init-3) …
18 4. Use [Sign.update](../../reference/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#update…
20 …Currently, the amount of data to be passed in by a single **Sign.update** is not limited. You can …
22 …- If a small amount of data is to be signed, call **Sign.sign()** immediately after **Sign.init()*…
23 …- If a large amount of data is to be signed, call **Sign.update()** multiple times to [pass in dat…
25 5. Use [Sign.sign](../../reference/apis-crypto-architecture-kit/js-apis-cryptoFramework.md#sign-1) …
31 …ify** instance. The string parameter must be the same as that used to create the **Sign** instance.
49 …let input1: cryptoFramework.DataBlob = { data: new Uint8Array(buffer.from("This is Sign test plan1…
50 …let input2: cryptoFramework.DataBlob = { data: new Uint8Array(buffer.from("This is Sign test plan2…
88 …let input1: cryptoFramework.DataBlob = { data: new Uint8Array(buffer.from("This is Sign test plan1…
89 …let input2: cryptoFramework.DataBlob = { data: new Uint8Array(buffer.from("This is Sign test plan2…