本文整理汇总了Python中netzob.Common.Type.TypeConvertor.TypeConvertor.bin2int方法的典型用法代码示例。如果您正苦于以下问题:Python TypeConvertor.bin2int方法的具体用法?Python TypeConvertor.bin2int怎么用?Python TypeConvertor.bin2int使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类netzob.Common.Type.TypeConvertor.TypeConvertor
的用法示例。
在下文中一共展示了TypeConvertor.bin2int方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: generateValue
# 需要导入模块: from netzob.Common.Type.TypeConvertor import TypeConvertor [as 别名]
# 或者: from netzob.Common.Type.TypeConvertor.TypeConvertor import bin2int [as 别名]
def generateValue(self, negative, dictionary):
variable = dictionary.getVariableByID(self.idVar)
(binValue, strValue) = variable.getValue(negative, dictionary)
self.log.debug("GENERATE VALUE of size : " + str(binValue))
nb_letter = TypeConvertor.bin2int(binValue)
self.strVal = ''.join(random.choice(string.ascii_letters) for x in range(nb_letter))
self.binVal = TypeConvertor.string2bin(self.strVal, 'big')
self.log.debug("Generated value = " + self.strVal)
self.log.debug("Generated value = " + str(self.binVal))
示例2: learn
# 需要导入模块: from netzob.Common.Type.TypeConvertor import TypeConvertor [as 别名]
# 或者: from netzob.Common.Type.TypeConvertor.TypeConvertor import bin2int [as 别名]
def learn(self, val, indice, isForced, dictionary):
self.log.debug("LEARN")
variable = dictionary.getVariableByID(self.idVar)
(binValue, strValue) = variable.getValue(False, dictionary)
nb_letter = TypeConvertor.bin2int(binValue) * 8
self.log.debug("nb_letter = " + str(nb_letter))
tmp = val[indice:]
self.log.debug("tmp size : " + str(len(tmp)))
if (len(tmp) >= nb_letter):
self.binVal = tmp[:nb_letter]
self.strVal = TypeConvertor.bin2string(self.binVal)
self.log.debug("Value learnt : " + self.strVal)
return indice + nb_letter
return -1
示例3: learn
# 需要导入模块: from netzob.Common.Type.TypeConvertor import TypeConvertor [as 别名]
# 或者: from netzob.Common.Type.TypeConvertor.TypeConvertor import bin2int [as 别名]
def learn(self, val, indice, isForced, dictionary):
self.log.debug("Learn on " + str(indice) + " : " + str(val[indice:]))
if self.binValue != None and not isForced:
self.log.debug("Won't learn the hex value (" + self.name + ") since it already has one is not forced to (return " + str(len(self.binValue)) + ")")
return indice + len(self.binValue)
tmp = val[indice:]
self.log.debug("Learn hex given its size : " + str(self.size) + " from " + str(tmp))
if len(tmp) >= self.size:
self.binValueBeforeLearning = self.binValue
self.strValueBeforeLearning = self.strValue
self.binValue = val[indice:indice + self.size]
self.strValue = str(TypeConvertor.bin2int(self.binValue))
self.log.debug("learning value : " + str(self.binValue))
self.log.debug("learning value : " + self.strValue)
return indice + self.size
else:
return -1