@vivliostyle/core 2.25.2 → 2.25.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vivliostyle/core",
3
3
  "description": "Vivliostyle Core library for HTML+CSS typesetting with EPUB/Web publications support",
4
- "version": "2.25.2",
4
+ "version": "2.25.3",
5
5
  "author": "Vivliostyle Foundation",
6
6
  "scripts": {
7
7
  "build": "microbundle --format cjs --define VIVLIOSTYLE_DEBUG=false",
@@ -55,5 +55,5 @@
55
55
  "engines": {
56
56
  "node": ">=14"
57
57
  },
58
- "gitHead": "a14a91e32a986f622a426587547dfb60b837a9e5"
58
+ "gitHead": "d69641b5e99fea9c0f13d1172c9faf16003dbfef"
59
59
  }
@@ -1,33 +0,0 @@
1
- /**
2
- * @return big-endian byte sequence
3
- */
4
- export declare function encode32(n: number): string;
5
- /**
6
- * @param bytes big-endian byte sequence
7
- */
8
- export declare function decode32(bytes: string): number;
9
- /**
10
- * @param bytes chars with codes 0 - 255 that represent message byte values
11
- * @return big-endian uint32 numbers representing sha1 hash
12
- */
13
- export declare function bytesToSHA1Int32(bytes: string): number[];
14
- /**
15
- * @param bytes chars with codes 0 - 255 that represent message byte values
16
- * @return uint8 numbers representing sha1 hash
17
- */
18
- export declare function bytesToSHA1Int8(bytes: string): number[];
19
- /**
20
- * @param bytes chars with codes 0 - 255 that represent message byte values
21
- * @return chars with codes 0 - 255 equal to SHA1 hash of the input
22
- */
23
- export declare function bytesToSHA1Bytes(bytes: string): string;
24
- /**
25
- * @param bytes chars with codes 0 - 255 that represent message byte values
26
- * @return hex-encoded SHA1 hash
27
- */
28
- export declare function bytesToSHA1Hex(bytes: string): string;
29
- /**
30
- * @param bytes chars with codes 0 - 255 that represent message byte values
31
- * @return base64-encoded SHA1 hash of the input
32
- */
33
- export declare function bytesToSHA1Base64(bytes: string): string;