Skip to content

Commit

Permalink
Small format change
Browse files Browse the repository at this point in the history
  • Loading branch information
konstantinullrich committed Dec 8, 2023
1 parent 8fa4659 commit fbb66bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/src/polyseed.dart
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ class Polyseed {
salt[14] = 0xff;
salt[15] = 0xff;

final mask = _deriveKey(Uint8List.fromList(utf8.encode(password)), salt, 32);
final mask =
_deriveKey(Uint8List.fromList(utf8.encode(password)), salt, 32);

// apply mask
for (var i = 0; i < GFPoly.secretSize; ++i) {
Expand Down

0 comments on commit fbb66bb

Please sign in to comment.