1. Introduction Mutual SSL authentication or certificate based mutual authentication refers to two parties authenticating each other through verifying the provided digital certificate so that both parties are assured of the others' identity. In techn…
本文转载自SSL (Secure Sockets Layer) TLS简介 The Transport Layer Security (TLS) protocol aims primarily to provide secure and data integrity between two communicating computer applications. TLS位于TCP之上(也有基于UDP的,称为DTLS,这里不讨论它),如图 1 所示. Figure 1: SSL/TLS协议所在层次…
为什么不用FiddlerCore? 说到FiddlerCore大家可能会比较陌生,那么它哥Fiddler就比较熟悉了:抓包.模拟低带宽.修改请求我平时比较常用.Fiddler的本质就是一个HTTP代理服务器. FiddlerCore是Fiddler去除了UI的核心组件,可以用于二次开发.如下图所示: Fiddler主要有以下几点感觉很别扭: API命名不规范.属性/字段混用. .NET中普遍采用Pascal命名规范,而Fiddler的命名就像个大杂烩.例如:public成员用字段,CONFIG类…
Everything You Ever Wanted to Know About SSL (but Were Afraid to Ask) Or perhaps more accurately, "practical things I've learned about SSL". This post (and the companion Spring Boot application) will demonstrate using SSL certificates to validat…
The following topics are covered in this section: JAAS and WebLogic Server JAAS Authentication Development Environment Writing a Client Application Using JAAS Authentication Using JNDI Authentication Java Client JAAS Authentication Code Examples The…
The present invention relates to the field of security of electronic data and/or communications. In one form, the invention relates to data security and/or privacy in a distributed and/or decentralised network environment. In another form, the invent…
import ssl, socket, time if __name__ == "__main__": context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)     #context.load_cert_chain(certfile=‘key_pub.pem’, keyfile=‘key_priv.pem')   #可以分开定义公钥和私钥文件,也可以合并成一个文件     context.load_cert_chain(certfile=’cert…
http://technet.microsoft.com/en-us/library/bb742455.aspx Abstract Network Load Balancing, a clustering technology included in the Microsoft Windows 2000 Advanced Server and Datacenter Server operating systems, enhances the scalability and availabilit…
Introduction mailsend is a simple command line program to send mail via SMTP protocol. I used to send a piece of alert mail from a program in a networked Windows machine. You might find it useful in some situations. Latest Development version is 1.17…
How To Setup a CA Original Version by Ian AldermanUpdated by Zach Miller Introduction You can set up a Certificate Authority (CA) in multiple different ways. Our first pass here will be to set up a very simple, one-level CA for use with the SSL authe…