jwk

Creator: coderz1093

Last updated:

Add to Cart

Description:

jwk

Overview #
JWK (JSON Web Key) encoding and decoding. Designed to be used with
package:cryptography.
Licensed under the Apache License 2.0.
Getting started #
In pubspec.yaml
dependencies:
cryptography: ^2.7.0
jwk: ^0.2.3
copied to clipboard
Examples #
Encoding KeyPair #
import 'package:cryptography/cryptography.dart';
import 'package:jwk/jwk.dart';

Future<void> main() async {
final keyPair = await RsaPss().newKeyPair();
final jwk = Jwk.fromKeyPair(keyPair);
final json = jwk.toJson();
}
copied to clipboard
Decoding SecretKey #
import 'package:jwk/jwk.dart';

void main() {
final jwk = Jwk.fromJson({
'kty': 'OCT',
'alg': 'A128KW',
'k': 'GawgguFyGrWKav7AX4VKUg',
});
final secretKey = jwk.toSecretKey();
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.