File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Open-sourced under the [Apache License 2.0](LICENSE).
2222- [ cryptography_test] ( cryptography_flutter )
2323 - Cross-platform tests. Note that "cryptography" and "cryptography_flutter_integration_test"
2424 contain more tests than just these.
25- - [ jwk ] ( jwk )
25+ - [ jwk_plus ] ( jwk )
2626 - JWK (JSON Web Key) encoding / decoding.
2727
2828## Contributing
Original file line number Diff line number Diff line change 33
44# Overview
55
6- JWK (JSON Web Key) encoding and decoding. Designed to be used with
6+ JWK plus (JSON Web Key) encoding and decoding. Designed to be used with
77[ package: cryptography_plus ] ( https://pub.dev/packages/cryptography_plus ) .
88
99Licensed under the [ Apache License 2.0] ( LICENSE ) .
@@ -15,7 +15,7 @@ In _pubspec.yaml_
1515``` yaml
1616dependencies :
1717 cryptography_plus : ^2.7.0
18- jwk : ^0.2.4
18+ jwk_plus : ^0.2.4
1919` ` `
2020
2121# Examples
@@ -24,7 +24,7 @@ dependencies:
2424
2525` ` ` dart
2626import 'package:cryptography_plus/cryptography_plus.dart';
27- import 'package:jwk/jwk .dart';
27+ import 'package:jwk_plus/jwk_plus .dart';
2828
2929Future<void> main() async {
3030 final keyPair = await RsaPss().newKeyPair();
@@ -36,7 +36,7 @@ Future<void> main() async {
3636## Decoding SecretKey
3737
3838``` dart
39- import 'package:jwk/jwk .dart';
39+ import 'package:jwk_plus/jwk_plus .dart';
4040
4141void main() {
4242 final jwk = Jwk.fromJson({
Original file line number Diff line number Diff line change 1515/// JWK (JSON Web Key) encoding and decoding.
1616///
1717/// See documentation for the class [Jwk] .
18- library jwk ;
18+ library jwk_plus ;
1919
2020import 'dart:convert' ;
2121import 'dart:typed_data' ;
Original file line number Diff line number Diff line change 1- name : jwk
1+ name : jwk_plus
22version : 0.2.4
33homepage : https://github.com/emz-hanauer/dart-cryptography
44description : JWK (JSON Web Key) encoding and decoding (for package:cryptography).
Original file line number Diff line number Diff line change 1212// See the License for the specific language governing permissions and
1313// limitations under the License.
1414
15- import 'package:jwk/jwk .dart' ;
15+ import 'package:jwk_plus/jwk_plus .dart' ;
1616import 'package:test/test.dart' ;
1717
1818void main () {
You can’t perform that action at this time.
0 commit comments