• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# @ohos.file.hash (文件哈希处理)
2
3该模块提供文件哈希处理能力,对文件内容进行哈希处理。
4
5> **说明:**
6>
7> 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
8
9## 导入模块
10
11```js
12import Hash from '@ohos.file.hash';
13```
14
15## 使用说明
16
17使用该功能模块对文件/目录进行操作前,需要先获取其应用沙箱路径,获取方式及其接口用法请参考:
18
19**Stage模型**
20
21 ```js
22import UIAbility from '@ohos.app.ability.UIAbility';
23
24export default class EntryAbility extends UIAbility {
25    onWindowStageCreate(windowStage) {
26        let context = this.context;
27        let pathDir = context.filesDir;
28    }
29}
30 ```
31
32**FA模型**
33
34 ```js
35 import featureAbility from '@ohos.ability.featureAbility';
36
37 let context = featureAbility.getContext();
38 context.getFilesDir().then((data) => {
39      let pathDir = data;
40 })
41 ```
42
43FA模型context的具体获取方法参见[FA模型](js-apis-inner-app-context.md#Context模块)。
44
45## Hash.hash
46
47hash(path: string, algorithm: string): Promise<string>
48
49计算文件的哈希值,使用Promise异步回调。
50
51**系统能力**:SystemCapability.FileManagement.File.FileIO
52
53**参数:**
54
55| 参数名    | 类型   | 必填 | 说明                                                         |
56| --------- | ------ | ---- | ------------------------------------------------------------ |
57| path      | string | 是   | 待计算哈希值文件的应用沙箱路径。                             |
58| algorithm | string | 是   | 哈希计算采用的算法。可选 "md5"、"sha1" 或 "sha256"。建议采用安全强度更高的 "sha256"。 |
59
60**返回值:**
61
62  | 类型                    | 说明                         |
63  | --------------------- | -------------------------- |
64  | Promise<string> | Promise对象。返回文件的哈希值。表示为十六进制数字串,所有字母均大写。 |
65
66**错误码:**
67
68以下错误码的详细介绍请参见[基础文件IO错误码](../errorcodes/errorcode-filemanagement.md#基础文件io错误码)。
69
70| 错误码ID | 错误信息 |
71| -------- | -------- |
72| 13900020 | Invalid argument |
73| 13900042 | Unknown error |
74
75**示例:**
76
77  ```js
78  let filePath = pathDir + "/test.txt";
79  Hash.hash(filePath, "sha256").then((str) => {
80    console.info("calculate file hash succeed:" + str);
81  }).catch((err) => {
82    console.info("calculate file hash failed with error message: " + err.message + ", error code: " + err.code);
83  });
84  ```
85
86## Hash.hash
87
88hash(path: string, algorithm: string, callback: AsyncCallback<string>): void
89
90计算文件的哈希值,使用callback异步回调。
91
92**系统能力**:SystemCapability.FileManagement.File.FileIO
93
94**参数:**
95
96| 参数名    | 类型                        | 必填 | 说明                                                         |
97| --------- | --------------------------- | ---- | ------------------------------------------------------------ |
98| path      | string                      | 是   | 待计算哈希值文件的应用沙箱路径。                             |
99| algorithm | string                      | 是   | 哈希计算采用的算法。可选 "md5"、"sha1" 或 "sha256"。建议采用安全强度更高的 "sha256"。 |
100| callback  | AsyncCallback<string> | 是   | 异步计算文件哈希操作之后的回调函数(其中给定文件哈希值表示为十六进制数字串,所有字母均大写)。 |
101
102**错误码:**
103
104以下错误码的详细介绍请参见[基础文件IO错误码](../errorcodes/errorcode-filemanagement.md#基础文件io错误码)。
105
106| 错误码ID | 错误信息 |
107| -------- | -------- |
108| 13900020 | Invalid argument |
109| 13900042 | Unknown error |
110
111**示例:**
112
113  ```js
114  let filePath = pathDir + "/test.txt";
115  Hash.hash(filePath, "sha256", (err, str) => {
116    if (err) {
117      console.info("calculate file hash failed with error message: " + err.message + ", error code: " + err.code);
118    } else {
119      console.info("calculate file hash succeed:" + str);
120    }
121  });
122  ```
123