Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit 7f77328

Browse files
committed
Added links
1 parent 1df5612 commit 7f77328

5 files changed

Lines changed: 14 additions & 19 deletions

File tree

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,19 @@ This repository is a PSR-4 Composer-ready version of [devi/Salt](https://github.
88

99
## Features
1010

11-
- Blake2b
12-
- Chacha20
13-
- Chacha20Poly1305
14-
- Curve25519
15-
- Ed25519
16-
- Poly1305
17-
- Salsa20
18-
- Salt
11+
- [Blake2b](https://github.com/MikeRow/Salt/tree/master/src/Blake2b)
12+
- [Chacha20](https://github.com/MikeRow/Salt/tree/master/src/Chacha20)
13+
- [Chacha20Poly1305](https://github.com/MikeRow/Salt/tree/master/src/Chacha20Poly1305)
14+
- [Curve25519](https://github.com/MikeRow/Salt/tree/master/src/Curve25519)
15+
- [Ed25519](https://github.com/MikeRow/Salt/tree/master/src/Ed25519)
16+
- [Poly1305](https://github.com/MikeRow/Salt/tree/master/src/Poly1305)
17+
- [Salsa20](https://github.com/MikeRow/Salt/tree/master/src/Salsa20)
18+
- [FieldElement](https://github.com/MikeRow/Salt/blob/master/src/FieldElement.php)
19+
- [Salt](https://github.com/MikeRow/Salt/blob/master/src/Salt.php)
1920

2021
cryptography methods
2122

22-
- NanoSalt
23+
- [NanoSalt](https://github.com/MikeRow/Salt/blob/master/src/NanoSalt.php)
2324

2425
cryptography methods for Banano/Nano currencies (different signing)
2526

src/NanoSalt.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
use MikeRow\Salt\Poly1305\Poly1305;
2626
use MikeRow\Salt\Salsa20\Salsa20;
2727

28+
class NanoSaltException extends Exception {}
29+
2830
class NanoSalt
2931
{
3032
/* Salsa20, HSalsa20, XSalsa20 */

src/NanoSaltException.php

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/Salt.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
use MikeRow\Salt\Poly1305\Poly1305;
2626
use MikeRow\Salt\Salsa20\Salsa20;
2727

28+
class SaltException extends Exception {}
29+
2830
class Salt
2931
{
3032
/* Salsa20, HSalsa20, XSalsa20 */

src/SaltException.php

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)