Skip to content

Commit

Permalink
Small fixes and better documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
terrier989 committed Feb 17, 2023
1 parent cfe4af6 commit 260f04e
Show file tree
Hide file tree
Showing 31 changed files with 424 additions and 230 deletions.
5 changes: 5 additions & 0 deletions cryptography/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.1.1

* Fixes small issues.
* Improves documentation.

## 2.1.0

* Improves performance of Blake2b/Blake2s.
Expand Down
5 changes: 3 additions & 2 deletions cryptography/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ Any feedback, issue reports, or pull requests are appreciated!

## Some packages that depend on this
* [cryptography_flutter](https://pub.dev/packages/cryptography_flutter).
* Android / iOS cryptography support.
* Improves performance in Flutter in some cases. This is done by moving computations away from
the UI isolate.
* [jwk](https://pub.dev/packages/jwk)
* JWK (JSON Web Key) support.

Expand Down Expand Up @@ -197,7 +198,7 @@ dependencies:
If you use Flutter, you may consider using
[cryptography_flutter](https://pub.dev/packages/cryptography_flutter) for improving performance by
moving computations away from the UI thread.
moving computations away from the UI isolate.
# Examples
## Digital signature
Expand Down
3 changes: 3 additions & 0 deletions cryptography/lib/helpers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,9 @@ abstract class DelegatingKeyExchangeAlgorithm extends _Delegating
@override
KeyExchangeAlgorithm get fallback;

@override
KeyPairType<KeyPairData, PublicKey> get keyPairType => fallback.keyPairType;

@override
Future<KeyPair> newKeyPair() {
return fallback.newKeyPair();
Expand Down
Loading

0 comments on commit 260f04e

Please sign in to comment.