File tree 1 file changed +2
-2
lines changed
src/main/java/org/libj/net
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ public static class Bearer extends AuthScheme {
168
168
* @return A header string encoding of the provided {@code token}.
169
169
*/
170
170
public static String encode (final String token ) {
171
- return name + " " + Base64 . getEncoder (). encodeToString ( token . getBytes ()) ;
171
+ return name + " " + token ;
172
172
}
173
173
174
174
/**
@@ -182,7 +182,7 @@ public static String encode(final String token) {
182
182
* @throws IllegalArgumentException If {@code authorization} is not in valid Base64 scheme.
183
183
*/
184
184
public static Bearer decode (final String authorization ) {
185
- return prototype .matches (Objects .requireNonNull (authorization )) ? new Bearer (new String ( Base64 . getDecoder (). decode ( authorization .substring (7 )) )) : null ;
185
+ return prototype .matches (Objects .requireNonNull (authorization )) ? new Bearer (authorization .substring (7 )) : null ;
186
186
}
187
187
188
188
private final String token ;
You can’t perform that action at this time.
0 commit comments