Giter Club home page Giter Club logo

Comments (6)

toshe avatar toshe commented on May 21, 2024

the library already does support RSA key signing. use the source, luke!

require 'openssl'
some_private_key = OpenSSL::PKey::RSA.new File.read('path/to/my/private/and/secure.pem'), 'password_for_my_private_key'
rsa_signed_token = JWT.encode(
        {"exp" => Time.now.to_i+3600,
         "name" => "some_name"},
        some_private_key, "RS512")

You can then use the public key to verify the signatures.

And if you need to generate an RSA key pair the OpenSSL library has a very neat documentation:
http://ruby-doc.org/stdlib-2.0/libdoc/openssl/rdoc/OpenSSL.html

from ruby-jwt.

Demuxx avatar Demuxx commented on May 21, 2024

Great, thanks for the information!

from ruby-jwt.

kurtisnelson avatar kurtisnelson commented on May 21, 2024

This should get put in the README, I had to google to find this.

from ruby-jwt.

toshe avatar toshe commented on May 21, 2024

contributing is not a crime, you know ;)

from ruby-jwt.

excpt avatar excpt commented on May 21, 2024

@kurtisnelson Thanks for bringing this up again. :)

The README / documentation really needs some updates. Working on it this weekend.

from ruby-jwt.

excpt avatar excpt commented on May 21, 2024

@prandium I improved the documentation and added a better example.

from ruby-jwt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.