1

我有一个videoReact-native App. 现在我想为这个video文件生成一个数字签名或哈希,并将它与区块链相关联。有什么方法可以为video文件中的文件创建哈希React-native App

4

2 回答 2

1

您可以使用rnfs直接从存储中散列文件。

您还可以使用我编写的一个小包react-native- hash 直接从 URL、文件或字符串进行哈希处理,但是,它目前仅适用于 Android。

于 2019-12-30T06:12:44.027 回答
0

您可以使用react-native-fetch-blobjs-sha3模块

将视频文件编码为 后,您可以使用该模块base64加密该base64值。hash

import RNFetchBlob from 'react-native-fetch-blob'
sha3_256 = require('js-sha3').sha3_256;
...

let data = ''
let hashdata = '';
RNFetchBlob.fs.readStream(
    // file path
    PATH_TO_THE_FILE,
    // encoding, should be one of `base64`, `utf8`, `ascii`
    'base64',
    // (optional) buffer size, default to 4096 (4095 for BASE64 encoded data)
    // when reading file in BASE64 encoding, buffer size must be multiples of 3.
    4095)
.then((ifstream) => {
    ifstream.open()
    ifstream.onData((chunk) => {
      // when encoding is `ascii`, chunk will be an array contains numbers
      // otherwise it will be a string
      data += chunk
    })
    ifstream.onError((err) => {
      console.log('oops', err)
    })
    ifstream.onEnd(() => {  
     hashdata = sha3_256(data); // Convert Data to Hash Value
    })
})

如果使用世博会

import * as DocumentPicker from 'expo-document-picker';
import * as FileSystem from 'expo-file-system';
sha3_256 = require('js-sha3').sha3_256;
const response: IDocumentPickerResponse = await DocumentPicker.getDocumentAsync({
    copyToCacheDirectory: false,
    type: '*/*',
});
const file: string = await FileSystem.readAsStringAsync(
    response.uri,
    {
        encoding: FileSystem.EncodingTypes.Base64,
    });
const hashdata = sha3_256(file); // Convert Data to Hash Value
于 2019-08-10T14:39:24.807 回答