package org.jboss.resteasy.util;
import java.nio.charset.StandardCharsets;
import java.util.Base64;
public class BasicAuthHelper
{
public static String (String username, String password)
{
StringBuffer buf = new StringBuffer(username);
buf.append(':').append(password);
return "Basic " + Base64.getEncoder().encodeToString(buf.toString().getBytes(StandardCharsets.UTF_8));
}
public static String[] (String header)
{
if (header.length() < 6) return null;
String type = header.substring(0, 5);
type = type.toLowerCase();
if (!type.equalsIgnoreCase("Basic")) return null;
String val = header.substring(6);
val = new String(Base64.getDecoder().decode(val.getBytes()));
int pos = val.indexOf(':');
String[] split = new String[2];
split[0] = val.substring(0, pos);
split[1] = val.substring(pos + 1);
return split;
}
}