react-native-pinning-ssl
v1.0.3
Published
A react-native library for pinning SSL using SHA-1 public key
Downloads
77
Maintainers
Readme
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
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-pinning-ssl
and addRNPinningSsl.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNPinningSsl.a
to your project'sBuild Phases
➜Link 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 thegetPackages()
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
My ADA wallet:
DdzFFzCqrht7vQmuSYrjn6PKDxW3on4cFznU4Jjjycp1bqVTvXngM8wN7sop1Haq7msc5NanULU8TyAG9UuLLZMynfroiHKr2aiiTaMM