You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

react-native-pinning-ssl

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-pinning-ssl

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

1.0.3
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

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

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

Android

  • 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
  • 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')
    
  • 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

Keywords

react

FAQs

Package last updated on 28 Aug 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts