Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/src/jsonwebkey.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
///
/// [1]: https://www.w3.org/TR/WebCryptoAPI/#JsonWebKey-dictionary
/// [2]: https://www.iana.org/assignments/jose/jose.xhtml#web-key-parameters
class JsonWebKey {
final class JsonWebKey {
String? kty;
String? use;
List<String>? key_ops;
Expand Down Expand Up @@ -217,7 +217,7 @@ class JsonWebKey {
///
/// [1]: https://www.w3.org/TR/WebCryptoAPI/#JsonWebKey-dictionary
/// [2]: https://tools.ietf.org/html/rfc7518#section-6.3.2.7
class RsaOtherPrimesInfo {
final class RsaOtherPrimesInfo {
String r;
String d;
String t;
Expand Down
Loading