Delphi Indy错误:14094410:SSL例程:ssl3_read_bytes:sslv3警报握手失败

时间:2018-01-12 07:28:22

标签: openssl delphi-xe indy10

我一直在使用

当我尝试执行代码时:

error:14094410:SSL routines:ssl3_read_bytes:sslv3 alert handshake failure

我收到错误:

"""

import test

def replace_chars(tmpStr, tmpChar):
    tmpWord = " ".join(tmpChar)
    newWord = " "
    for item in tmpStr:
        if item not in tmpStr:
            newWord = newWord + item
        else:
            newWord = newWord + " "
    return item
test.testEqual(replace_chars("SamplEam*",["p","E","*"]), "Sam l am ")

我需要做些什么才能解决此错误?

0 个答案:

没有答案