-
Hi folks, I have a backend which has to be fed by a JWT authentication system that manages another php backend with this library. Since my backend only manages the verification of the JWT through the secret key, this generates a doubt to me. In which cases the library generates a new private key? I have the only problem that if the private key changes in the php backend, my verification will stop working and I wanted to make sure when this happens. Thanks in advance :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi,
The bundle itself never regenerates keys, only you can do it. A good reason why you could want to do it is periodic rotation, which the bundle doesn't handle out of the box. |
Beta Was this translation helpful? Give feedback.
Hi,
The bundle itself never regenerates keys, only you can do it. A good reason why you could want to do it is periodic rotation, which the bundle doesn't handle out of the box.