Skip to content

Commit a78ce12

Browse files
committed
add in the new readme
1 parent fc01873 commit a78ce12

File tree

8 files changed

+38
-14
lines changed

8 files changed

+38
-14
lines changed

.idea/workspace.xml

Lines changed: 20 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dargon2/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ void main() async {
4545

4646
Please file feature requests and bugs at the [issue tracker].
4747

48+
Please mark all dargon2 issues with `[dargon2]` prepended to the issue title
49+
4850
[issue tracker]: https://github.com/tmthecoder/dargon2/issues
4951

5052
## Licensing

dargon2_core/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,16 @@ class TestLibLoader implements LibLoader {
3939

4040
Please file feature requests and bugs at the [issue tracker].
4141

42-
[issue tracker]: https://github.com/tmthecoder/dargon2_core/issues
42+
Please mark all dargon2_core issues with `[dargon2_core]` prepended to the issue title
43+
44+
[issue tracker]: https://github.com/tmthecoder/dargon2/issues
4345

4446
## Licensing
4547

4648
- dargon2_core is Licensed under the [MIT License]
4749
- The C implementation of [Argon2] is licensed under a dual [Apache and CC0 License]
4850

49-
[MIT License]: https://github.com/tmthecoder/dargon2_core/blob/main/LICENSE
51+
[MIT License]: https://github.com/tmthecoder/dargon2/blob/main/dargon2_core/LICENSE
5052

5153
[Argon2]: https://github.com/P-H-C/phc-winner-argon2
5254

dargon2_flutter/dargon2_flutter/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ A plugin to handle dart:ffi integrations for iOS and Android for argon2 password
55
Uses the reference C implementation of [Argon2], winner of the [Password Hash Competition] in mobile implementations while using [hash-wasm]'s WebAssembly argon2 implementation on web.
66

77
[Password Hash Competition]: https://password-hashing.net
8-
[dargon2]: https://github.com/tmthecoder/dargon2
98

109
## Flutter version under 2.8
1110
If you're building with a Flutter version under 2.8 (or you get an `UnimplementedError` on use), add this line into your application entrypoint (usually `main()` in `main.dart`):
@@ -75,12 +74,14 @@ Future<void> hashWithArgon2Isolate(Map map) async {
7574

7675
Please file feature requests and bugs at the [issue tracker].
7776

78-
[issue tracker]: https://github.com/tmthecoder/dargon2_flutter/issues
77+
Please mark all dargon2_flutter issues with `[dargon2_flutter]` prepended to the issue title
78+
79+
[issue tracker]: https://github.com/tmthecoder/dargon2/issues
7980

8081
## Licensing
8182

8283
- dargon2_flutter and all platform implementations are Licensed under the [MIT License]
83-
- dargon2_core is Licensed under the [MIT License](https://github.com/tmthecoder/dargon2_core/blob/main/LICENSE)
84+
- dargon2_core is Licensed under the [MIT License](https://github.com/tmthecoder/dargon2/blob/main/dargon2_core/LICENSE)
8485
- The C implementation of [Argon2] is licensed under a dual [Apache and CC0 License]
8586
- [hash-wasm] is licensed under the [MIT License](https://github.com/Daninet/hash-wasm/blob/master/LICENSE)
8687

dargon2_flutter/dargon2_flutter_mobile/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This is ONLY the mobile-specific platform interface. Please use the federated [d
1616
- dargon2_core is Licensed under the [MIT License](https://github.com/tmthecoder/dargon2_core/blob/main/LICENSE)
1717
- The C implementation of [Argon2] is licensed under a dual [Apache and CC0 License]
1818

19-
[MIT License]: https://github.com/tmthecoder/dargon2_flutter/blob/main/LICENSE
19+
[MIT License]: https://github.com/tmthecoder/dargon2/blob/main/dargon2_flutter/LICENSE
2020

2121
[Argon2]: https://github.com/P-H-C/phc-winner-argon2
2222

dargon2_flutter/dargon2_flutter_platform_interface/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ A plugin that defines the common interface for [dargon2_flutter] platform implem
88
## Licensing
99

1010
- dargon2_flutter_platform_interface is Licensed under the [MIT License]
11-
- dargon2_interface is Licensed under the [MIT License](https://github.com/tmthecoder/dargon2_interface/blob/main/LICENSE)
11+
- dargon2_interface is Licensed under the [MIT License](https://github.com/tmthecoder/dargon2/blob/main/dargon2_interface/LICENSE)
1212

13-
[MIT License]: https://github.com/tmthecoder/dargon2_flutter/blob/main/LICENSE
13+
[MIT License]: https://github.com/tmthecoder/dargon2/blob/main/dargon2_flutter/LICENSE

dargon2_flutter/dargon2_flutter_web/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ This is ONLY the web-specific platform interface. Please use the federated [darg
1414
- dargon2_flutter_web is Licensed under the [MIT License]
1515
- [hash-wasm] is Licensed under the [MIT License](https://github.com/Daninet/hash-wasm/blob/master/LICENSE)
1616

17-
[MIT License]: https://github.com/tmthecoder/dargon2_flutter/blob/main/LICENSE
17+
[MIT License]: https://github.com/tmthecoder/dargon2/blob/main/dargon2_flutter/LICENSE
1818
[hash-wasm]: https://github.com/Daninet/hash-wasm

dargon2_interface/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,16 @@ class TestDArgon2 extends DArgon2 {
3737

3838
Please file feature requests and bugs at the [issue tracker].
3939

40-
[issue tracker]: https://github.com/tmthecoder/dargon2_interface/issues
40+
Please mark all dargon2_interface issues with `[dargon2]` prepended to the issue title
41+
42+
[issue tracker]: https://github.com/tmthecoder/dargon2/issues
4143

4244
## Licensing
4345

4446
- dargon2_core is Licensed under the [MIT License]
4547
- The C implementation of [Argon2] is licensed under a dual [Apache and CC0 License]
4648

47-
[MIT License]: https://github.com/tmthecoder/dargon2_interface/blob/main/LICENSE
49+
[MIT License]: https://github.com/tmthecoder/dargon2/blob/main/dargon2_interface/LICENSE
4850

4951
[Argon2]: https://github.com/P-H-C/phc-winner-argon2
5052

0 commit comments

Comments
 (0)