forked from I2P_Developers/i2p.i2p
add sigtype to i2ptunnel client gui too
This commit is contained in:
@@ -1215,7 +1215,7 @@ public class IndexBean {
|
|||||||
"i2cp.reduceIdleTime", "i2cp.reduceQuantity", "i2cp.closeIdleTime",
|
"i2cp.reduceIdleTime", "i2cp.reduceQuantity", "i2cp.closeIdleTime",
|
||||||
"outproxyUsername", "outproxyPassword",
|
"outproxyUsername", "outproxyPassword",
|
||||||
I2PTunnelHTTPClient.PROP_JUMP_SERVERS,
|
I2PTunnelHTTPClient.PROP_JUMP_SERVERS,
|
||||||
I2PTunnelHTTPClientBase.PROP_AUTH
|
I2PTunnelHTTPClientBase.PROP_AUTH, I2PClient.PROP_SIGTYPE
|
||||||
};
|
};
|
||||||
private static final String _otherServerOpts[] = {
|
private static final String _otherServerOpts[] = {
|
||||||
"i2cp.reduceIdleTime", "i2cp.reduceQuantity", "i2cp.leaseSetKey", "i2cp.accessList",
|
"i2cp.reduceIdleTime", "i2cp.reduceQuantity", "i2cp.leaseSetKey", "i2cp.accessList",
|
||||||
|
@@ -434,6 +434,35 @@ input.default { width: 1px; height: 1px; visibility: hidden; }
|
|||||||
</div>
|
</div>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
|
||||||
|
<div id="tunnelOptionsField" class="rowItem">
|
||||||
|
<label>
|
||||||
|
<%=intl._("Signature type")%>
|
||||||
|
(<%=intl._("Experts only!")%>)
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<div id="hostField" class="rowItem">
|
||||||
|
<div id="portField" class="rowItem">
|
||||||
|
<label>DSA-SHA1</label>
|
||||||
|
<input value="0" type="radio" id="startOnLoad" name="sigType" title="Default"<%=(editBean.getSigType(curTunnel)==0 ? " checked=\"checked\"" : "")%> class="tickbox" />
|
||||||
|
</div>
|
||||||
|
<div id="portField" class="rowItem">
|
||||||
|
<label>ECDSA-P256</label>
|
||||||
|
<input value="1" type="radio" id="startOnLoad" name="sigType" title="Advanced users only"<%=(editBean.getSigType(curTunnel)==1 ? " checked=\"checked\"" : "")%> class="tickbox" />
|
||||||
|
</div>
|
||||||
|
<div id="portField" class="rowItem">
|
||||||
|
<label>ECDSA-P384</label>
|
||||||
|
<input value="2" type="radio" id="startOnLoad" name="sigType" title="Advanced users only"<%=(editBean.getSigType(curTunnel)==2 ? " checked=\"checked\"" : "")%> class="tickbox" />
|
||||||
|
</div>
|
||||||
|
<div id="portField" class="rowItem">
|
||||||
|
<label>ECDSA-P521</label>
|
||||||
|
<input value="3" type="radio" id="startOnLoad" name="sigType" title="Advanced users only"<%=(editBean.getSigType(curTunnel)==3 ? " checked=\"checked\"" : "")%> class="tickbox" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="subdivider">
|
||||||
|
<hr />
|
||||||
|
</div>
|
||||||
|
|
||||||
<% if ("httpclient".equals(tunnelType) || "connectclient".equals(tunnelType) || "sockstunnel".equals(tunnelType) || "socksirctunnel".equals(tunnelType)) { %>
|
<% if ("httpclient".equals(tunnelType) || "connectclient".equals(tunnelType) || "sockstunnel".equals(tunnelType) || "socksirctunnel".equals(tunnelType)) { %>
|
||||||
<div id="accessField" class="rowItem">
|
<div id="accessField" class="rowItem">
|
||||||
<label><%=intl._("Local Authorization")%>:</label>
|
<label><%=intl._("Local Authorization")%>:</label>
|
||||||
|
Reference in New Issue
Block a user