react-native-pinning-ssl

1.0.3 • Public • Published

react-native-pinning-ssl

A react-native library for pinning SSL using SHA-1 public key.

Getting started

$ npm install react-native-pinning-ssl --save

Mostly automatic installation

$ react-native link react-native-pinning-ssl

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-pinning-ssl and add RNPinningSsl.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNPinningSsl.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.RNPinningSslPackage; to the imports at the top of the file
  • Add new RNPinningSslPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-pinning-ssl'
    project(':react-native-pinning-ssl').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-pinning-ssl/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-pinning-ssl')
    

Get SHA-1 key

Usage

import { isSSLValid } from 'react-native-pinning-ssl';
 
async function runSSLPinning(){
    try{
        const result = await isSSLValid({
            url: 'https://github.com/',
            hashes: ['CA 06 F5 6B 25 8B 7A 0D 4F 2B 05 47 09 39 47 86 51 15 19 84'],
            domainNames: ['github.com'],
        });
        
        return result;
    } catch (e) {
        console.log(e);
  }
}
 
runSSLPinning();

References

NSURLAuthenticationChallenge+Fingerprint credited to https://stackoverflow.com/a/26963381

Donation

Help to make cryptocurrency world bigger :))

My ADA wallet:

DdzFFzCqrht7vQmuSYrjn6PKDxW3on4cFznU4Jjjycp1bqVTvXngM8wN7sop1Haq7msc5NanULU8TyAG9UuLLZMynfroiHKr2aiiTaMM

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i react-native-pinning-ssl

    Weekly Downloads

    19

    Version

    1.0.3

    License

    none

    Unpacked Size

    24.9 MB

    Total Files

    1162

    Last publish

    Collaborators

    • nlt2390