All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.rest.client.reactive.runtime.BasicAuthUtil Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package io.quarkus.rest.client.reactive.runtime;

import java.util.Base64;

public class BasicAuthUtil {

    private BasicAuthUtil() {
    }

    public static String headerValue(String username, String password) {
        return "Basic " + Base64.getEncoder().encodeToString((username + ":" + password).getBytes());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy