We developed a channel to transfer files securely, using key based encryption methods and comparing the different methods on Linux based OS. The sub-objectives incidental to the main objective are:
- Use of Asymmetric and Symmetric encryption methods to secure both ends of the communication channel
- To provide a secure channel for faster transmission of data
- To build a dependable and encrypted file transfer system between client and server
- To compare the asymmetric and symmetric encryption algorithms.
- Linux Based OS (Ubuntu | Kali)
- C
- Socket Programming
RSA algorithm is a public key encryption technique and is considered as the most secure way of encryption. It was invented by Rivest, Shamir and Adleman in year 1978 and hence name RSA algorithm.
- The RSA algorithm holds the following features −
- RSA algorithm is a popular exponentiation in a finite field over integers including prime numbers.
- The integers used by this method are sufficiently large making it difficult to solve.
- There are two sets of keys in this algorithm: private key and public key.
The more popular and widely adopted symmetric encryption algorithm likely to be encountered nowadays is the Advanced Encryption Standard (AES). It is found at least six time faster than triple DES. A replacement for DES was needed as its key size was too small. With increasing computing power, it was considered vulnerable against exhaustive key search attack. Triple DES was designed to overcome this drawback but it was found slow.
- The features of AES are as follows −
- Symmetric key symmetric block cipher
- 128-bit data, 128/192/256-bit keys
- Stronger and faster than Triple-DES
- Provide full specification and design details
- Software implementable in C and Java
- It can only encrypt text files.







