1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ReactNative (expo)でSHA256とかを使ってみる

Last updated at Posted at 2020-01-09

どうやらexpo-cryptoってのを使えばできるみたい。
試しに出力してみる。

App.js
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';

import * as Crypto from 'expo-crypto';

export default class App extends React.Component {

  componentDidMount = async () => {

    const digest = await Crypto.digestStringAsync(
      Crypto.CryptoDigestAlgorithm.SHA256,
      'Hello'
    );

    console.log(digest);
  }

  render() {
    return (
      <View>
        <Text>App</Text>
      </View>
    );
  }
}

consoleに下記のように出た。いてけてるみたい。

185f8db32271fe25f561a6fc938b2e264306ec304eda518007d1764826381969

いちおう別ツール(Macのコマンドライン)で確認。

echo -n "Hello" | shasum -a 256

185f8db32271fe25f561a6fc938b2e264306ec304eda518007d1764826381969  -

同じ内容となってますね。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?