Skip to main content

Posts

Showing posts with the label dynamic IP

Explain TCP/IP network interfaces

The   TCP/IP   Network Interface layer formats IP datagrams at the Network layer into packets that specific network technologies can understand and transmit. A network interface is the network-specific software that communicates with the network-specific device driver and the IP layer in order to provide the IP layer with a consistent interface to all network adapters that might be present. The IP layer selects the appropriate network interface based on the destination address of the packet to be transmitted. Each network interface has a network address. The Network Interface layer is responsible for adding or removing any link layer protocol header required to deliver a message to its destination. The   network adapter   device driver controls the network adapter card. Although not required, a network interface is usually associated with a network adapter. For instance, the loopback interface has no network adapter associated with it. A machine must h...

Do you know what is RSA algorithm and DSA

RSA : RSA stands for   Rivest-Shamir-Adleman . It is a cryptosystem used for secure data transmission. In RSA algorithm, encryption key is public but decryption key is private. This algorithm is based on mathematical fact that factoring the product of two large prime numbers is not easy. It was developed by   Ron Rivest ,   Adi Shamir   and   Leonard Adleman   in 1977. DSA : DSA stand for   Digital Signature Algorithm . It is used for digital signature and its verification. It is based on mathematical concept of modular exponentiation and discrete logarithm. It was developed by   National Institute of Standards and Technology (NIST)   in 1991. DSA involves four operations: Key Generation Key Distribution Signing Signature Verification