@@ -132,7 +132,6 @@ public static Algorithm RSA512(RSAKey key) throws IllegalArgumentException {
132
132
*
133
133
* @param secret the secret bytes to use in the verify or signing instance.
134
134
* 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>
136
135
* @return a valid HMAC256 Algorithm.
137
136
* @throws IllegalArgumentException if the provided Secret is null.
138
137
*/
@@ -145,7 +144,6 @@ public static Algorithm HMAC256(String secret) throws IllegalArgumentException {
145
144
*
146
145
* @param secret the secret bytes to use in the verify or signing instance.
147
146
* 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>
149
147
* @return a valid HMAC256 Algorithm.
150
148
* @throws IllegalArgumentException if the provided Secret is null.
151
149
*/
@@ -158,7 +156,6 @@ public static Algorithm HMAC256(byte[] secret) throws IllegalArgumentException {
158
156
*
159
157
* @param secret the secret bytes to use in the verify or signing instance.
160
158
* 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>
162
159
* @return a valid HMAC384 Algorithm.
163
160
* @throws IllegalArgumentException if the provided Secret is null.
164
161
*/
@@ -171,7 +168,6 @@ public static Algorithm HMAC384(String secret) throws IllegalArgumentException {
171
168
*
172
169
* @param secret the secret bytes to use in the verify or signing instance.
173
170
* 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>
175
171
* @return a valid HMAC384 Algorithm.
176
172
* @throws IllegalArgumentException if the provided Secret is null.
177
173
*/
@@ -184,7 +180,6 @@ public static Algorithm HMAC384(byte[] secret) throws IllegalArgumentException {
184
180
*
185
181
* @param secret the secret bytes to use in the verify or signing instance.
186
182
* 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>
188
183
* @return a valid HMAC512 Algorithm.
189
184
* @throws IllegalArgumentException if the provided Secret is null.
190
185
*/
@@ -197,7 +192,6 @@ public static Algorithm HMAC512(String secret) throws IllegalArgumentException {
197
192
*
198
193
* @param secret the secret bytes to use in the verify or signing instance.
199
194
* 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>
201
195
* @return a valid HMAC512 Algorithm.
202
196
* @throws IllegalArgumentException if the provided Secret is null.
203
197
*/
0 commit comments