UNPKG

react-native-kcdsa

Version:

대한민국 표준 전자서명 알고리즘 - KCDSA (Korean Certificate-based Digital Signature Algorithm)

66 lines (40 loc) 696 B
# KCDSA 대한민국 표준 전자서명 알고리즘 - KCDSA (Korean Certificate-based Digital Signature Algorithm) ## Installation ```sh npm install --save react-native-kcdsa ``` or ```sh yarn add react-native-kcdsa ``` ### Installation (iOS) ##### Using CocoaPods (React Native 0.60 and higher) ```sh cd ios pod install ``` ### Installation (Android) ##### React Native 0.60 and higher - Linking automatically ## Usage ### Example ```js import { NativeModules, Platform } from 'react-native' var Kcdsa = NativeModules.Kcdsa ``` #### Key Generation ```ts ``` #### Sign ```ts ``` #### Verify ```ts ``` #### IOS Test (Sign) ```ts ``` #### ANDROID Test (Verify) ```ts ```