Code Monkey home page Code Monkey logo

Comments (6)

babelouest avatar babelouest commented on September 4, 2024

I answer to myself:
In GnuTLS, RSA-PSS signing and verification is available in the 3.6 branch but not in the 3.5 branch
In OpenSSL, RSA-PSS is available in the 1.1.1 branch but not in the 1.1.0 branch

Both versions are still not officially released, and it will take a little bit longer to be available in the distribs, so I guess the better approach is to wait a little bit longer.

Although, if I'm right, the changes would look like:

Include file

// include/jwt.h insert on line 62
	JWT_ALG_PS256,
	JWT_ALG_PS384,
	JWT_ALG_PS512,

GnuTLS

// libjwt/jwt-gnutls.c insert line 150
	case JWT_ALG_PS256:
		alg = GNUTLS_DIG_SHA256;
		pk_alg = GNUTLS_PK_RSA_PSS;
		break;
	case JWT_ALG_PS384:
		alg = GNUTLS_DIG_SHA384;
		pk_alg = GNUTLS_PK_RSA_PSS;
		break;
	case JWT_ALG_PS512:
		alg = GNUTLS_DIG_SHA512;
		pk_alg = GNUTLS_PK_RSA_PSS;
		break;
// And also change the function jwt_verify_sha_pem accordingly

OpenSSL

// libjwt/jwt-openssl.c insert line 198
	/* RSA-PSS */
	case JWT_ALG_PS256:
		alg = EVP_sha256();
		type = EVP_PKEY_RSA_PSS;
		break;
	case JWT_ALG_PS384:
		alg = EVP_sha384();
		type = EVP_PKEY_RSA_PSS;
		break;
	case JWT_ALG_PS512:
		alg = EVP_sha512();
		type = EVP_PKEY_RSA_PSS;
		break;
// Make similar inserts in function jwt_verify_sha_pem

from libjwt.

babelouest avatar babelouest commented on September 4, 2024

I am able to sign and verify jwt using RSA-PSS algorithm using the GnuTLS backend!
https://github.com/babelouest/libjwt/tree/rsa-pss

(spoiler alert: it's not as easy as I thought in the post above... :p )

Now I need to complete the openssl backend but I'm less fluent in openssl library than in gnutls library.

@benmcollins (and others), if you're willing to help and have time to help on the openssl part, I'd be very grateful :-)

from libjwt.

benmcollins avatar benmcollins commented on September 4, 2024

Since you have test cases, I should be able to get this setup quickly. JWT.io has PS256/384 tests so I can validate against that.

from libjwt.

babelouest avatar babelouest commented on September 4, 2024

Thanks, jwt.io was helpful to me too.
I found this SO question that seems helpful to understand rsa-pss sign/verification with libssl: https://stackoverflow.com/questions/44546272/activate-padding-and-salt
Otherwise, the documentation seems very slim...

from libjwt.

babelouest avatar babelouest commented on September 4, 2024

@benmcollins , do you want me to open a pull request to your repo, so you can continue from my code in a new branch?

from libjwt.

benmcollins avatar benmcollins commented on September 4, 2024

Completed in current code base.

from libjwt.

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.