×

Blowfish algorithm

The Blowfish algorithm is the very first encryption algorithm which is symmetric. It was firstly used as an alternate algorithm for the DES algorithm. It was designed by Bruce Steiner in 1993. By symmetric, we mean that the algorithm uses the same key for encryption and decryption of the data. The algorithm is used to protect the sensitive data.

The symmetric encryption technique converts the given data into cipher text. Cipher text refers simply to the coded form of sensitive information generally used to prevent data leakage and for many other security purposes.

Use of Blowfish Algorithm

  • The Blowfish algorithm is used today in many products, including password management tools, email interaction tools, and much more.
  • Blowfish algorithm is used for DES encryption as it is significantly faster, safer and easier to implement.
  • The primary speciality of the Blowfish algorithm is that no practical cryptanalysis has been found till today. In other words, this algorithm has no practical way to decode or understand the data encrypted by this algorithm.
  • Cryptanalysis, in simple terms, is the technique to interpret the encrypted data used by usual hackers to barge into any encrypted database.
  • Note that blowfish is not like the SHAS12 algorithm as it is not a hashing algorithm.
  • Blowfish algorithm is open source and entirely in the public domain with no royalty charges and is more accessible and secure to use.
  • Blowfish also follows Feistel structure, and the size of plain text to be encrypted by the blowfish algorithm is usually sixty-four bits.
  • The storage required for storing the cipher key is variable (not fixed) but usually varies between 32 to 448 bits. Also, the default value or the size of any cipher key is 120 bit if not specified.

How are the keys expanded?

The procedure used for the transformation of the original key to sub-keys is explained step by step here in brief:

Your original key is divided into several sub-keys, usually 18. Once they are created, they are stored in the data structure called p array and are represented as P0, P1, .....Pn-1, ..., P17 respectively. Like the IDEA algorithm, the keys in the Blowfish algorithm are divided into several S boxes. Unlike the DES algorithm, the s-boxes in Blowfish algorithms are derived depending on the original key. In this algorithm, we derive 4 s boxes, each of which can hold approximately 512 entries of 32 bits each.

Steps to expand the original key

The first step for generating keys in the Blowfish algorithm is to initialize the data structures, P-array and S-boxes (substitution boxes). The value in p-array is initialized with the value of pi.

The 2nd and essential step is to fill the p-array. This is done by assigning the value in the follow way to each index in the p array.

P0= P0 XOR  First 32 BITS OF ORIGINAL KEY.
.
.
Pn= Pn XOR  (n=1)th 32 BITS OF ORIGINAL KEY.
.
.
P17= P17 XOR  18th(last) 32 BITS OF ORIGINAL KEY.

For example, the value of 1st sub-key P0 would equal the result of XOR between the initial value of P0 and the first 32 bits of the original key.

Encryption of data by the Blowfish algorithm

The central plain text to be encrypted by the Blowfish algorithm is firstly divided into two parts, and then a total of 16 rounds are performed to encrypt data in the Blowfish algorithm.

The step-by-step procedure for the encryption is:

  1. Divide the plane text into equal parts; left 32 bits and right part, 32 bits.
  2. Perform XOR operation on the left part with the nth sub-key. The result obtained is applied to a function f. We will look at this function separately for better clarity.
  3. After applying the function, the output received is passed as an input for XOR with the correct part.
  4. After performing the second step, the output received after the XOR between left and sub-key is now considered as the right part of the plain text, and similarly, the result from the right part is considered as left. Simply said, the values of the results are swapped.
  5. Iterate on steps 2, 3, and 4 up to the 16th sub-key (P15).
  6. After 16 rounds, the swapping of the results is paused, and each of the left and right parts is applied with the 17th and the 18th sub-key.
  7. The result from the 6th step is your final cipher text.

Related Topics

Detect and Remove Loop in a Linked List

Create a function called detectAndRemovetheLoop() that verifies whether a given Linked List has a loop, eliminates the loop if it does, and returns true if it does. It returns false...

6 minutes read.

Adding one to the number represented an array of digits

You have given one array, which consists of values which represent the different digits of a number. You have to add 1 to this number and store the result in...

3 minutes read.

Collision Resolution Techniques

Collision Resolution Techniques Collision in hashing In this, the hash function is used to compute the index of the array.The hash value is used to store the key in the hash table,...

2 minutes read.

Binary Tree Inorder Traversal

The binary tree is a type of tree in which each and every node has atleast two children except the leaf nodes. We have various operations in the binary tree,...

4 minutes read.

Number of visible boxes putting one inside another

You have given one array, which consists of values which represent the sizes of different boxes. We can put one box inside another if the size of the outside box...

3 minutes read.

Comb Sort

Brush sort is a fairly direct orchestrating computation at first arranged by Wlodzimierz Dobosiewicz and Artur Borowy in 1980, later rediscovered (and given the name "Combsort") by Stephen Lacey and...

5 minutes read.

Flatten Binary Tree to a linked list

Implementation In this section, we will see the implementation of the binary Tree and its conversion into linked lists. let us proceed: - // Writing a C++ program that will convert a...

4 minutes read.

Extended Binary Tree

A form of binary tree known as an extended binary tree replaces all of the original tree's null subtrees with special nodes known as external nodes, while the remaining nodes...

4 minutes read.

Bitonical Sort

Arranging an unordered collecttion of things into asignificant order. •Comparision Based Model: Bubble Sort, Selection Sort -->Non-Comparison Based. Model: Bucket Sort or on the other hand a Count Sort Bitonic Sort: Bitonic sort Algorithm was made...

5 minutes read.

DFS (Depth-first search) Algorithm: Data Structure

What is DFS (Depth-first search)? The depth first search is a graph traversal algorithm. The idea behind this algorithm is backtracking and it is a kind of recursive algorithm. In the...

3 minutes read.

Data Structures Algorithms

What is an Algorithm? An algorithm is a sequence of steps used to complete a job or get a desired result. It is similar to programming building elements that let cell...

4 minutes read.

Height of a binary tree

The height of a binary tree is generally defined as the height or length of the root _nod in the entire binary tree. In simple words, the height of a...

4 minutes read.

What Is Dfs Algorithm in Data Structures

DFS stands for Depth First Search. Generally, it is a repetitive or decidable type of algorithm which is basically used in identifying all the vertices or nodes of a graph...

5 minutes read.

Given Two Binary Trees, Check if it is Symmetric

Implementation // creating a C++ program that will help us check whether the two given trees are mirror images of each other.  #include<bits/stdc++.h> using namespace std; /* A given binary tree has a data...

5 minutes read.

All About Minimum Cost Spanning Trees in Data Structure

Data management is called database management. This allows the computer to sort or organize the data for efficient retrieval. A data model is a system that stores, manages, and optimizes...

7 minutes read.

What is the Use of Segment Trees in Data Structure?

Segment trees Segment trees are also called statistical trees in computer science. They are a type of tree data structure. Segment trees are used to store information regarding segments and intervals....

6 minutes read.

Red-black Tree in Data Structures?

A type of binary tree which is known as the Red-Black tree, is a specialized and unique tree. What is the urgency or, to be more precise, the necessity of...

10 minutes read.

Rearrange a linked list into alternate fashion first and the last element

Rearrange a linked list into alternate fashion first and the last element This article will explain how to rearrange the linked list into alternate fashion first and the last element. Here,...

3 minutes read.

Right side view of binary tree

The right view of the binary tree is generally known to be that side viewed from the right direction of the point of view. To be more precise, the right-side...

8 minutes read.

Heap Sort vs Merge Sort

In this article, we are going to discuss the Heap Sort, Merge sort and the difference between them. What is Heap Sort? Heap – A heap is an abstract data type categorised...

7 minutes read.