Mathieu Barnachon

Results 52 comments of Mathieu Barnachon

@phanindhraB JSON are coded as dictionary, so order is not preserved. If you are using a `decodable` struct, it shouldn't matter. Otherwise, you will have to provide your own encoder/decoder...

Is it working with an on-the-fly key generation, like that: ``` let privateKey = try ECPrivateKey.make(for: .prime256v1) let privateKeyPEM = privateKey.pemString let jwtSigner = JWTSigner.es256(privateKey: Data(privateKeyPEM.utf8) let signedJwt = try...