Skip to content

Commit 4fd477a

Browse files
committed
Base64 encoding should not be required in Authorization: Bearer {ticket}, re #13
1 parent a2891c1 commit 4fd477a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/libj/net/AuthScheme.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ public static class Bearer extends AuthScheme {
168168
* @return A header string encoding of the provided {@code token}.
169169
*/
170170
public static String encode(final String token) {
171-
return name + " " + Base64.getEncoder().encodeToString(token.getBytes());
171+
return name + " " + token;
172172
}
173173

174174
/**
@@ -182,7 +182,7 @@ public static String encode(final String token) {
182182
* @throws IllegalArgumentException If {@code authorization} is not in valid Base64 scheme.
183183
*/
184184
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;
186186
}
187187

188188
private final String token;

0 commit comments

Comments
 (0)