You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spring Security supports supplying an RSA public key in its OAuth 2.0 APIs.
Local keys, though, are often distributed in files or as a PEM-encoded configuration property. It would be nice to have some support for converting an encoded RSA key into the appropriate JCA instance, e.g. RSAPublicKey.
One way to do this would be by using the Converter interface:
Spring Security supports supplying an RSA public key in its OAuth 2.0 APIs.
Local keys, though, are often distributed in files or as a PEM-encoded configuration property. It would be nice to have some support for converting an encoded RSA key into the appropriate JCA instance, e.g.
RSAPublicKey
.One way to do this would be by using the
Converter
interface:Which then users could use directly or could be registered with a
ConversionService
.The text was updated successfully, but these errors were encountered: