本文整理汇总了Python中contact.Contact.encrypt_opt方法的典型用法代码示例。如果您正苦于以下问题:Python Contact.encrypt_opt方法的具体用法?Python Contact.encrypt_opt怎么用?Python Contact.encrypt_opt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类contact.Contact
的用法示例。
在下文中一共展示了Contact.encrypt_opt方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: extract_contact
# 需要导入模块: from contact import Contact [as 别名]
# 或者: from contact.Contact import encrypt_opt [as 别名]
def extract_contact(self):
if not self.type_in(c.IPMSG_BR_ENTRY, c.IPMSG_ANSENTRY):
contact = Contact(name=self.name, group='', host=self.host, addr=self.addr, login=self.name)
contact.temporary = True
else:
contact = Contact(name=self.msg, group=self.group, host=self.host, addr=self.addr, login=self.name)
contact.encrypt_opt = self.test(c.IPMSG_ENCRYPTOPT)
return contact
示例2: extract_contact_list
# 需要导入模块: from contact import Contact [as 别名]
# 或者: from contact.Contact import encrypt_opt [as 别名]
def extract_contact_list(self):
rslt = []
if not self.type_in(c.IPMSG_ANSLIST):
return []
g_cnt, c_cnt, bunch = re.split('\x07', self.raw_msg, 2)
raw_list = re.split('\x07', bunch)[:-1]
while raw_list:
raw = raw_list[:7]
raw_list = raw_list[7:]
tag = raw[2]
addr = list(self.addr)
addr[0] = raw[3]
wtf = raw[4]
name = self.to_unicode(raw[5])
login = self.to_unicode(raw[0])
group = self.to_unicode(raw[6])
contact = Contact(name=name, group=group, host=raw[1], addr=tuple(addr), login=login)
contact.encrypt_opt = (int(tag) & c.IPMSG_ENCRYPTOPT)
rslt.append(contact)
return rslt