Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@criusm/ssl-pinning

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@criusm/ssl-pinning

Native implementation of SSL Pinning for Android and iOS

  • 1.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
56
decreased by-20%
Maintainers
1
Weekly downloads
 
Created
Source

@criusm/ssl-pinning

Getting started

$ npm install @criusm/ssl-pinning

Mostly automatic installation

Usage

import SslPinning from '@criusm/ssl-pinning';

//Setup the RNSslPinning for Android and iOS
SslPinning.setup();
//Add a Public key to the list
SslPinning.addPublicKey("www.your-url.com", "YOUR_PUBLIC_KEY");
//Save all keys added and update on Android and iOS
SslPinning.save();

To get the public key of a Server use the following command (Replace example.com with your server adress):

openssl s_client -servername example.com -connect example.com:443 | openssl x509 -pubkey -noout | openssl pkey -pubin -outform der | openssl dgst -sha256 -binary | openssl enc -base64

Keywords

FAQs

Package last updated on 28 Feb 2023

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc