Skip to content

Commit bad6035

Browse files
authored
Remove dead README links (#676)
1 parent a6fa0b4 commit bad6035

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

lib/src/main/java/com/auth0/jwt/algorithms/Algorithm.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ public static Algorithm RSA512(RSAKey key) throws IllegalArgumentException {
132132
*
133133
* @param secret the secret bytes to use in the verify or signing instance.
134134
* Ensure the length of the secret is at least 256 bit long
135-
* See <a href="https://github.com/auth0/java-jwt#hmac-key-length-and-security">HMAC Key Length and Security in README</a>
136135
* @return a valid HMAC256 Algorithm.
137136
* @throws IllegalArgumentException if the provided Secret is null.
138137
*/
@@ -145,7 +144,6 @@ public static Algorithm HMAC256(String secret) throws IllegalArgumentException {
145144
*
146145
* @param secret the secret bytes to use in the verify or signing instance.
147146
* Ensure the length of the secret is at least 256 bit long
148-
* See <a href="https://github.com/auth0/java-jwt#hmac-key-length-and-security">HMAC Key Length and Security in README</a>
149147
* @return a valid HMAC256 Algorithm.
150148
* @throws IllegalArgumentException if the provided Secret is null.
151149
*/
@@ -158,7 +156,6 @@ public static Algorithm HMAC256(byte[] secret) throws IllegalArgumentException {
158156
*
159157
* @param secret the secret bytes to use in the verify or signing instance.
160158
* Ensure the length of the secret is at least 384 bit long
161-
* See <a href="https://github.com/auth0/java-jwt#hmac-key-length-and-security">HMAC Key Length and Security in README</a>
162159
* @return a valid HMAC384 Algorithm.
163160
* @throws IllegalArgumentException if the provided Secret is null.
164161
*/
@@ -171,7 +168,6 @@ public static Algorithm HMAC384(String secret) throws IllegalArgumentException {
171168
*
172169
* @param secret the secret bytes to use in the verify or signing instance.
173170
* Ensure the length of the secret is at least 384 bit long
174-
* See <a href="https://github.com/auth0/java-jwt#hmac-key-length-and-security">HMAC Key Length and Security in README</a>
175171
* @return a valid HMAC384 Algorithm.
176172
* @throws IllegalArgumentException if the provided Secret is null.
177173
*/
@@ -184,7 +180,6 @@ public static Algorithm HMAC384(byte[] secret) throws IllegalArgumentException {
184180
*
185181
* @param secret the secret bytes to use in the verify or signing instance.
186182
* Ensure the length of the secret is at least 512 bit long
187-
* See <a href="https://github.com/auth0/java-jwt#hmac-key-length-and-security">HMAC Key Length and Security in README</a>
188183
* @return a valid HMAC512 Algorithm.
189184
* @throws IllegalArgumentException if the provided Secret is null.
190185
*/
@@ -197,7 +192,6 @@ public static Algorithm HMAC512(String secret) throws IllegalArgumentException {
197192
*
198193
* @param secret the secret bytes to use in the verify or signing instance.
199194
* Ensure the length of the secret is at least 512 bit long
200-
* See <a href="https://github.com/auth0/java-jwt#hmac-key-length-and-security">HMAC Key Length and Security in README</a>
201195
* @return a valid HMAC512 Algorithm.
202196
* @throws IllegalArgumentException if the provided Secret is null.
203197
*/

0 commit comments

Comments
 (0)