摘要: 1.简单的将日志打印到屏幕import logginglogging.debug('This is debug message')logging.info('This is info message')logging.warning('This is warning message') 屏幕上打... 阅读全文
posted @ 2015-06-15 21:34 寒星月冷 阅读(541) 评论(0) 推荐(0) 编辑
摘要: 一、hashlib概述涉及加密服务:14. Cryptographic Services其中 hashlib是涉及安全散列和消息摘要,提供多个不同的加密算法借口,如SHA1、SHA224、SHA256、SHA384、SHA512、MD5等。import hashlibm = hashlib.md5(... 阅读全文
posted @ 2015-06-15 20:36 寒星月冷 阅读(2452) 评论(0) 推荐(0) 编辑