gpt4 book ai didi

java - BouncyCasTLe tsutils 检查版本

转载 作者:太空宇宙 更新时间:2023-11-03 13:16:45 24 4
gpt4 key购买 nike

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.

这意味着 ij 是从流中读取的版本号。它们必须是版本 3 和版本 1failWithError 方法也获得传递的魔数(Magic Number)。 TlsProtocolHandler 有它们的常量,我不知道为什么作者不使用它们

2: AL_fatal
70: AP_protocol_version

source

查看代码 checkVersion 在握手阶段 (ServerHello) 被调用。这里检查协议(protocol)版本。见此版本章节wikipedia article找到版本号。主要版本 3,次要版本 1 是 TLS 1.0

关于java - BouncyCasTLe tsutils 检查版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32264065/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com