Lines Matching refs:updateLength
82 …let updateLength = 20; // Set the data length to be passed in each time to 20 bytes. You can set t…
84 for (let i = 0; i < plainText.data.length; i += updateLength) {
85 let updateMessage = plainText.data.subarray(i, i + updateLength);
104 …let updateLength = 20; // Set the data length to be passed in each time to 20 bytes. You can set t…
106 for (let i = 0; i < cipherText.data.length; i += updateLength) {
107 let updateMessage = cipherText.data.subarray(i, i + updateLength);
182 …let updateLength = 20; // Set the data length to be passed in each time to 20 bytes. You can set t…
184 for (let i = 0; i < plainText.data.length; i += updateLength) {
185 let updateMessage = plainText.data.subarray(i, i + updateLength);
204 …let updateLength = 20; // Set the data length to be passed in each time to 20 bytes. You can set t…
206 for (let i = 0; i < cipherText.data.length; i += updateLength) {
207 let updateMessage = cipherText.data.subarray(i, i + updateLength);