Skip to content

Commit

Permalink
Merge branch '1.1.x' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyennv committed Sep 13, 2024
2 parents 4636682 + f33f95a commit b0ffcfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/crypto/signer/dsa.dart
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ class DSASigner implements Signer {

Uint8List _hashMessageIfNeeded(Uint8List message) {
if (_digest != null) {
_digest!.reset();
return _digest!.process(message);
_digest.reset();
return _digest.process(message);
} else {
return message;
}
Expand Down

0 comments on commit b0ffcfa

Please sign in to comment.