- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
BouncyCaSTLe org.bouncycaSTLe.crypto.tls.TlsUtils
有以下方法
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 是什么?
最佳答案
这是一个叫做“魔数(Magic Number)”的坏事的一个很好的例子:-)摘自 InputStream.read()
的 javadoc:
Reads the next byte of data from the input stream. The value byte is returned as an int in the range 0 to 255. If no byte is available because the end of the stream has been reached, the value -1 is returned.
这意味着 i
和 j
是从流中读取的版本号。它们必须是版本 3
和版本 1
。 failWithError
方法也获得传递的魔数(Magic Number)。 TlsProtocolHandler
有它们的常量,我不知道为什么作者不使用它们
2: AL_fatal
70: AP_protocol_version
查看代码 checkVersion
在握手阶段 (ServerHello
) 被调用。这里检查协议(protocol)版本。见此版本章节wikipedia article找到版本号。主要版本 3,次要版本 1 是 TLS 1.0
。
关于java - BouncyCasTLe tsutils 检查版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32264065/
BouncyCaSTLe org.bouncycaSTLe.crypto.tls.TlsUtils 有以下方法 protected static void checkVersion(InputStre
我是一名优秀的程序员,十分优秀!