我正在尝试使用python代码向HSM(Thales paysheild 9000)发送命令。但是我从代码中获得的响应并不像所期望的那样。
Input: HEADJA12345678912306 #generate random pin of length 6
Ouput: HEADJA12315
任何人都可以帮我识别问题吗?理想情况下,响应应该是JB而不是JA,我将其作为输出。
以下是代码。
#!/usr/bin/python
import socket, binascii, string
from struct import *
import time;
TCP_IP = 'localhost'
TCP_PORT = 6511
COMMAND = 'HEADJA12345678912306'
def testPrintable(str):
return all(c in string.printable for c in str)
def buildCommand(command):
hCommand = ''
i = 0
while True:
if (command[i:i+1] == '<'):
i = i + 1
while True:
hCommand = hCommand + binascii.a2b_hex(command[i:i+2])
i = i + 2
if (command[i:i+1] == '>'):
i = i + 1
break
else:
hCommand = hCommand + command[i]
i = i + 1
if (i == len(command)):
break
return hCommand
def main():
global TCP_IP
global TCP_PORT
global COMMAND
connection = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
connection.connect((TCP_IP, TCP_PORT))
BUFFER_SIZE = 1024
COMMAND = buildCommand(COMMAND)
SIZE=pack('>h',len(COMMAND))
MESSAGE = SIZE + COMMAND
connection.send(MESSAGE)
data = connection.recv(BUFFER_SIZE)
if (testPrintable(MESSAGE[2:])):
print "sent data (ASCII) :", MESSAGE[2:]
print "sent data (HEX) :", MESSAGE.encode('hex')
if (testPrintable(data[2:])):
print "received data (ASCII):", data[2:]
print "received data (HEX) :", data.encode('hex')
connection.close()
if __name__ == "__main__":
main()
答案 0 :(得分:2)
问题已解决,我使用的标题长度不正确。在更正标题长度后,HSM正在回复正确的消息。
答案 1 :(得分:1)
HSM的设计方式是,如果它收到任何不在其列表中的命令,它将不会提供任何正确的输出。这样做是为了增加安全性并防止外部黑客入侵。就像你的情况一样,你并不知道发生了什么。幸运的是,问题在于标题长度。但在某些情况下,它可能是任何其他问题,HSM将不会提供正确的错误代码。