jwe Questions

1

I'm trying to implement Play Integrity API in my project. I already implement the logic in an Android app and send the token to my server. I want to decrypt and verify locally because the server do...
Realgar asked 15/9, 2022 at 4:2

3

Solved

I'm looking for a way to use JSON Web Encryption (JWE) in a Node.js service. I have however only managed to find implementations of the related standard JWS. There are however several libraries for...
Nihility asked 25/3, 2015 at 14:50

1

Is it possible to use JSON Web Encryption(JWE) with Spring Security OAuth2 JWT ? Right now I have a following JwtAccessTokenConverter: @Bean public JwtAccessTokenConverter accessTokenConverter() ...

2

Solved

Just learning about JOSE and I understand that JWE is for encryption and JWS is for signing. What I don't seem to be able to find examples of is a payload that is both encrypted and signed. Let's...
Craigie asked 11/10, 2018 at 8:17

3

Solved

According to RFC 7516 it should be possible to encrypt the payload/claim, called JWE. Are there any python libraries out there that support that? I've checked PyJWT, python-jose and jwcrypto but th...
Unstoppable asked 26/8, 2016 at 9:30

1

Solved

What is the difference between JOSE, JWA, JWE, JWK, JWS and JWT and how are they related to one another?
Coinstantaneous asked 30/10, 2022 at 23:55

1

I'm using Jose library to create JWE's. I have successfully managed to create and parse JWE. JWT has fields like exp, iat which help in invalidating token after a certain period of time.How can I s...
Insincere asked 5/2, 2019 at 13:42

3

Solved

My ultimate goal is to create a JWE string, given a public key for iOS. To make things easier for myself, I've broken down my steps so most pressingly, I need to create an encrypted key using RSA ...
Orbit asked 28/6, 2019 at 11:59

2

Solved

I have this problem, I created a JWE in .net core using EncryptingCredentials by this way: var key = Encoding.ASCII.GetBytes(Configuration["Core:JwtSecret"]); var encryptionkey = Encoding...
Employer asked 6/1, 2021 at 17:22

1

Solved

I am trying to add expiry time to JWE which I am generating using jwcrypto library in the following way from jwcrypto import jwe, jwk, jwt from datetime import datetime, timedelta import time # c...
Neelyneeoma asked 19/12, 2019 at 4:38

1

Solved

I'm using the following code to issue my JWEs: var signCreds = new SigningCredentials(new SymmetricSecurityKey(Encoding.ASCII.GetBytes(Configuration["Jwt:SigningKey"])), SecurityAlgorithms.HmacSha...
Dancer asked 16/11, 2019 at 11:15

1

I'm using node-jose v0.11.0 (https://www.npmjs.com/package/node-jose) for JWK and JWE operations. I have an RSA key in JWK format that I can load into a JWK key store and also extract again. Howeve...
Fontanez asked 7/2, 2018 at 9:14

3

I am trying to implement Diffie-Hellman key exchange in Java, but I'm having a hard time understanding the specification: Complete the Diffie-Hellman key exchange process as a local mechanism acco...
Decelerate asked 14/9, 2017 at 15:59

1

Solved

Looking at RFC 7515 and RFC 7516, I was trying to understand what the proper mime type for the JWE should be. It looks like JWE and JWS share the JOSE header information, and JWS defines its mime t...
Monosyllable asked 29/3, 2017 at 18:1

1

Solved

I've been reading the JSON Web Encryption (JWE) specification, with the latest draft being 08, as we're looking at supporting JSON Web Tokens (JWT) in our authentication server. Using the asymmetri...
Ribose asked 19/3, 2013 at 11:24

1

Solved

I want to implement two level Security in my REST web services. Transport layer For point-to-point security (transport layer) i have decided to use HTTPS. Message layer (end to end) I need the js...
Dyspepsia asked 26/3, 2012 at 9:40
1

© 2022 - 2024 — McMap. All rights reserved.