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

@withdouble/lucipher

Package Overview
Dependencies
Maintainers
5
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@withdouble/lucipher

Encryption and JWT toolbox

  • 2.0.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
16
decreased by-55.56%
Maintainers
5
Weekly downloads
 
Created
Source

@withdouble/lucipher

Install

npm i @withdouble/lucipher

Generate Keys

Generate Asymmetric Elliptic Curve Keys

From https://cloud.google.com/iot/docs/how-tos/credentials/keys#generating_an_elliptic_curve_keys

openssl ecparam -genkey -name prime256v1 -noout -out ec_private.pem
openssl ec -in ec_private.pem -pubout -out ec_public.pem

ec_private.pem and ex_public.pem contain your keys in text format.

Generate Asymmetric RSA Keys

From https://cloud.google.com/iot/docs/how-tos/credentials/keys#generating_an_rsa_key

openssl genpkey -algorithm RSA -out rsa_private.pem -pkeyopt rsa_keygen_bits:2048
openssl rsa -in rsa_private.pem -pubout -out rsa_public.pem

rsa_private.pem and rsa_public.pem contain your keys in text format.

FAQs

Package last updated on 18 Oct 2021

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