Posts

Transport layer security

Image
A blog by 22CE022,17   What is TLS ?                                                                            => TLS is a security protocol used to protect data and communication. TLS encrypts communication between web apps and servers.TLS can be used to encrypt emails, messaging. TLS was proposed by the Internet Engineering Task Force (IETF), an international standards organization, and the first version of the protocol was published in 1999. The most recent version is  TLS 1.3 , which was published in 2018.     Difference of TLS AND SSL how does TLS WORK ? A TLS connection is initiated using a sequence known as the  TLS handshake . When a user navigates to a website that uses TLS, the TLS handshake begins between the user's device (al...
Image
 Python Turtle : Intro to Programming logic and creativity                    Blog by 22CE022,17 Python is one of the best languages to start learning programming with and python's in-built turtle library helps build logic and algorithmic skills in amateur programmer. click here for py turtle official docs we are given objects and functions of turtle library by which we can create turtle object, give it different shapes and colors, cause movement of the turtle in any direction of the canvas. we can also create pop-ups and show text on screen.  we can create drawings like this :  turtle drawings on github here are few mini games i have created using turtle library: US State guessing game:   The map image is loaded in turtle canvas and the axis of each state are saved in a csv file. Pandas is used to read this csv file. user enters name of a state and if the name is correct then state name is written on that x,y ax...