24 lines
722 B
Java
24 lines
722 B
Java
package eu.siacs.conversations.http;
|
|
|
|
import java.io.IOException;
|
|
import java.net.URL;
|
|
import java.net.URLConnection;
|
|
import java.net.URLStreamHandler;
|
|
import java.util.regex.Pattern;
|
|
|
|
|
|
public class AesGcmURLStreamHandler extends URLStreamHandler {
|
|
|
|
/**
|
|
* This matches a 48 or 44 byte IV + KEY hex combo, like used in http/aesgcm upload anchors
|
|
*/
|
|
public static final Pattern IV_KEY = Pattern.compile("([A-Fa-f0-9]{2}){48}|([A-Fa-f0-9]{2}){44}");
|
|
|
|
public static final String PROTOCOL_NAME = "aesgcm";
|
|
|
|
@Override
|
|
protected URLConnection openConnection(URL url) throws IOException {
|
|
return new URL("https"+url.toString().substring(url.getProtocol().length())).openConnection();
|
|
}
|
|
}
|