Skip to main content

Posts

Showing posts from December 13, 2018

Socket in Python

Socket Python In this post, We learn how to create socket in python programming language. Socket is one endpoint of the two-way communication link between two program running on a network. import socket host = "example.org" port = 80 # Create socket # AF_INET address family # SOCK_STREAM connection protocol socket_object = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # connect to host socket_object.connect((host, port)) # Get peer address socket_object.getpeername() # Get own address socket_object.getsockname() # send data socket_object.sendall('Hello, world') # receive data data = socket_object.recv(1024) # close connection socket_object.close() print 'Received', repr(data) Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Python ASN1 Parsing

Python ASN1 Parse In this post, we will learn how to parse certificate or pem encoded certificate in ASN1 format in python programming language. To parse certificate in ASN1 we will use python module pyasn1. If you do not have SSL/TSL certificate you can copy certificate form here  and save it in cert.pem file. # import required module from pyasn1_modules import pem, rfc2459 from pyasn1.codec.der import decoder # read pem TLS/SSL certificate substrate = pem.readPemFromFile(open('cert.pem')) # decode certificate in ASN1 cert = decoder.decode(substrate, asn1Spec=rfc2459.Certificate())[0] # pretty print ASN1 decoded certificate print(cert.prettyPrint()) Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

ONGC Recruitment

ONGC Recruitment      Oil and Natural Gas(ONGC) has released a notification for the post of   Non executive  for Mumbai and Goa location. Company Name ONGC Post Name    None executive State Mumbai/Goa Salary Rs.  30000 Number of Vacancy 422 Eligibility Class X-Graduation Last Date 01-01-2019 Application Details Job Notification Apply Online Job Application ONGC Recruitment       Government Jobs in Maharashtra Government Jobs in Goa Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.