Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
- Now using fixed `pointycastle` `Blake2b`:
  - pointycastle: ^3.1.2
  - bcgit/pc-dart#108
  - Removed `argon2_blake2b.dart`, not necessary anymore.
  • Loading branch information
gmpassos committed Jun 18, 2021
1 parent 1c276f3 commit 4a464dc
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 320 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 1.0.1

- Now using fixed `pointycastle` `Blake2b`:
- pointycastle: ^3.1.2
- https://github.com/bcgit/pc-dart/pull/108
- Removed `argon2_blake2b.dart`, not necessary anymore.

## 1.0.0-no-null-safety

- Same as `v1.0.0` but without Null Safety and using `pointycastle v2.0.1` (also without Null Safety).

## 1.0.0

- Initial version converted from:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Any help from the open-source community is always welcome and needed:
- Promote the project: create an article, do a post or make a donation.
- Are you a developer?
- Fix a bug and send a pull request.
- Implement a new feature, like other training algorithms and activation functions.
- Implement a new feature.
- Improve the Unit Tests.
- Have you already helped in any way?
- **Many thanks from me, the contributors and everybody that uses this project!**
Expand Down
2 changes: 1 addition & 1 deletion lib/src/argon2_base.dart
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import 'dart:typed_data';

import 'package:argon2/src/argon2_blake2b.dart';
import 'package:argon2/src/argon2_utils.dart';
import 'package:pointycastle/api.dart';
import 'package:pointycastle/digests/blake2b.dart';

import 'argon2_extension.dart';
import 'argon2_parameters.dart';
Expand Down
315 changes: 0 additions & 315 deletions lib/src/argon2_blake2b.dart

This file was deleted.

4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: argon2
description: Pure Dart Argon2 algorithm (the winner of the Password Hash Competition 2015) for all Dart platforms (JS/Web, Flutter, VM/Native).
version: 1.0.0
version: 1.0.1
homepage: https://github.com/gmpassos/argon2

environment:
sdk: '>=2.12.0 <3.0.0'

dependencies:
pointycastle: ^3.1.1
pointycastle: ^3.1.2
hex: ^0.2.0

dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion test/argon2_numbers_test.dart
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import 'dart:typed_data';

import 'package:argon2/src/argon2_blake2b.dart';
import 'package:argon2/src/argon2_extension.dart';
import 'package:argon2/src/argon2_utils.dart';
import 'package:hex/hex.dart';
import 'package:pointycastle/digests/blake2b.dart';
import 'package:test/test.dart';

void main() {
Expand Down

0 comments on commit 4a464dc

Please sign in to comment.