Lines Matching refs:checksum
530 Creates a checksum object and uses a promise to asynchronously return the result. A checksum object…
556 Creates a checksum object. A checksum object instance is returned upon a success.
573 let checksum = zlib.createChecksumSync()
584 Calculates the Adler-32 checksum. This API uses a promise to return the result. The calculated Adle…
594 | adler | number | Yes | Initial value of the Adler-32 checksum.|
595 | buf | ArrayBuffer | Yes | Data buffer for calculating the checksum. |
624 let checksum = zlib.createChecksumSync()
626 checksum.adler32(0, arrayBufferIn).then(data => {
635 …ms. This API uses a promise to return the result. The combined Adler-32 checksum is returned upon …
645 | adler1 | number | Yes | The first Adler-32 checksum to be combined. |
646 | adler2 | number | Yes | The second Adler-32 checksum to be combined. |
647 | len2 | number | Yes | Length of the data block of the second Adler-32 checksum.|
675 let checksum = zlib.createChecksumSync()
678 await checksum.adler32(0, arrayBufferIn).then(data => {
682 await checksum.adler32(1, arrayBufferIn).then(data => {
686 await checksum.adler32Combine(adler1, adler2, 12).then((data) => {
698 Updates the CRC-32 checksum. This API uses a promise to return the result. The updated CRC-32 check…
708 | crc | number | Yes | Initial value of the CRC-32 checksum.|
709 | buf | ArrayBuffer | Yes | Data buffer for calculating the checksum.|
738 let checksum = zlib.createChecksumSync()
740 checksum.crc32(0, arrayBufferIn).then((data) => {
751 …uses a promise to asynchronously return the result. The combined CRC-32 checksum is returned upon …
761 | crc1 | number | Yes | The first CRC-32 checksum to be combined. |
762 | crc2 | number | Yes | The second CRC-32 checksum to be combined. |
791 let checksum = zlib.createChecksumSync()
794 await checksum.crc32(0, arrayBufferIn).then(data => {
798 await checksum.crc32(1, arrayBufferIn).then(data => {
802 await checksum.crc32Combine(crc1, crc2, 12).then((data) => {
814 Updates the CRC-64 checksum. This API uses a promise to return the result. The updated CRC-64 check…
824 | crc | number | Yes | Initial value of the CRC-64 checksum.|
825 | buf | ArrayBuffer | Yes | Data buffer for calculating the checksum.|
854 let checksum = zlib.createChecksumSync()
856 checksum.crc64(0, arrayBufferIn).then((data) => {
867 Outputs the CRC-32 checksum table and uses a promise to asynchronously return the result. The CRC-3…
884 let checksum = zlib.createChecksumSync()
886 checksum.getCrcTable().then((data) => {
897 Outputs the CRC-64 checksum table and uses a promise to asynchronously return the result. The CRC-6…
914 let checksum = zlib.createChecksumSync()
916 checksum.getCrc64Table().then((data) => {
1357 Verifies the checksum inside the compressed stream. This API uses a promise to return the result. T…
1368 | check | number | Yes | Expected checksum. |