@vivliostyle/core 2.25.2 → 2.25.5
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/lib/vivliostyle/adaptive-viewer.d.ts +0 -1
- package/lib/vivliostyle/base.d.ts +0 -2
- package/lib/vivliostyle/epub.d.ts +5 -6
- package/lib/vivliostyle/net.d.ts +4 -0
- package/lib/vivliostyle/task-util.d.ts +0 -4
- package/lib/vivliostyle.js +1 -1
- package/lib/vivliostyle.js.map +1 -1
- package/package.json +2 -2
- package/lib/vivliostyle/sha1.d.ts +0 -33
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.
|
|
4
|
+
"version": "2.25.5",
|
|
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": "
|
|
58
|
+
"gitHead": "a7b1ed74bb9487dcf44a50d13eb9e90ed4eef1b0"
|
|
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;
|