Skip to content

Commit 3ce04a0

Browse files
Update README.md
1 parent b99f57f commit 3ce04a0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ You can use the following encryptions: `HashAlgorithm::DEFAULT`, `HashAlgorithm:
5252

5353
## Changing the encryption algorithm
5454

55+
**NOTE: If you are using the settings passed in the constructor then you can ignore the code below.**
56+
5557
You can change the type of algorithm used to generate the hash. It is possible to use `PASSWORD_BCRYPT`,` PASSWORD_ARGON2I`, `PASSWORD_ARGON2ID` and even `PASSWORD_DEFAULT`.
5658

5759
`useDefault()` will use standard encryption
@@ -98,7 +100,7 @@ $res = $password->verifyHash('my_password', $hash);
98100
var_dump($res);
99101
```
100102

101-
**If you are using the settings passed in the constructor then you can ignore the code below.**
103+
**NOTE: If you are using the settings passed in the constructor then you can ignore the code below.**
102104

103105
You can change the type of algorithm that will be used to check the hash.
104106

@@ -122,7 +124,7 @@ var_dump($res);
122124

123125
## Adding options
124126

125-
**If you are using the settings passed in the constructor then you can ignore the code below.**
127+
**NOTE: If you are using the settings passed in the constructor then you can ignore the code below.**
126128

127129
Add options in the `useDefault`, `useBcrypt` and `useArgon2` methods.
128130

0 commit comments

Comments
 (0)