v0.9.0 - The one that knows RSA from EC2
Packages:
- @simplewebauthn/browser@0.9.0
- @simplewebauthn/server@0.9.0
- @simplewebauthn/typescript-types@0.9.0
Changes:
- [server] Add support for attestations and assertions containing RSA public keys.
- [browser] Version sync.
- [typescript-types] Version sync.
Breaking Changes
- [server]
authenticatorInfo.base64PublicKeyreturned byverifyAttestationResponse()is now the entire public key buffer instead of a pared down form of it (it's still returned base64url-encoded). This helps ensure support for existing public keys, as well as future public key formats that may be introduced in the future. Public keys previously returned by this method must be upgraded via this "upgrader" script to work with future assertions. - [server] The
serviceNameargument forgenerateAttestationOptions()has been renamed torpName. This brings it in line with the existingrpIDargument and maps more obviously to its respective property within the returned options.