1
BouncyCastle的org.bouncycastle.crypto.tls.TlsUtils
有以下幾種方法BouncyCastle的tlsutils checkVersion
protected static void checkVersion(InputStream inputstream, TlsProtocolHandler tlsprotocolhandler)
throws IOException
{
int i = inputstream.read();
int j = inputstream.read();
if (i != 3 || j != 1)
{
tlsprotocolhandler.failWithError((short)2, (short)70);
}
}
protected static void checkVersion(byte abyte0[], TlsProtocolHandler tlsprotocolhandler)
throws IOException
{
if (abyte0[0] != 3 || abyte0[1] != 1)
{
tlsprotocolhandler.failWithError((short)2, (short)70);
}
}
什麼是3 & 1正在這裏檢查?
什麼是3&1的版本號? – user93353
好的,那是缺少的。我已經添加了更多信息。 – Kai
謝謝。你知道這是否意味着充氣城堡不支持TLS 1.1和TLS 1.2? – user93353