0% found this document useful (0 votes)
14 views

crypttool

The document discusses encryption and decryption techniques using RC4 and RSA algorithms, emphasizing the importance of key generation and digital signatures. It also highlights network security concepts like entropy and brute force attacks, along with practical examples of using Nmap for network scanning. Additionally, it covers the process of hybrid encryption and the use of SSL for secure communications.

Uploaded by

Jenita Suba
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views

crypttool

The document discusses encryption and decryption techniques using RC4 and RSA algorithms, emphasizing the importance of key generation and digital signatures. It also highlights network security concepts like entropy and brute force attacks, along with practical examples of using Nmap for network scanning. Additionally, it covers the process of hybrid encryption and the use of SSL for secure communications.

Uploaded by

Jenita Suba
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 57

Encryption,decryption and Attacking

Rivest Cipher 4 (RC4) is a symmetric key algorithm that encrypts messages one byte at a time using a
stream cipher.
RC4,Key 8 bit length ,key 12

Select Encrypt
To perform decryption
If key is 00 then you cannot decrypt
After encrypting hello World
Select start
In network security, entropy is a measure of how unpredictable a password is, and it plays a key role
in preventing brute force attacks. Brute force attacks are a type of cryptanalytic attack where
cybercriminals use software to guess login credentials by systematically trying all possible
combinations of characters.

Now choose 16 bit key

Perform encryption and then analyse


Generating Key

Select RSA-1024,Enter first name ,last name,give PIN


Select generate key pair
Now display key
You can export the key using
Save it in any one of the folder in D drive

Then
Perform RSA encryption

Use the key generated by you for encryption

Message is encrypted
Save as the encryted message in the same folder where you stored the key

Now open the encrypted file


Perform RSA decryption

Enter your key


We can obtain your decrypted message

Next open new file


Go to Digital Signature Sign Document

Use your key and sign


Select digital signature-Extract Signature

Select hexadecimal press verify


Now upon the digital signed file now apply rsa encryption
Use your key to encrypt

Now save in d drive


Now open the same file

Perform RSA decryption

Using your key


We obtain decrypted message

Now select digital sign -verification


Use your key selct verify

Select Extracted Signature


Hybrid Encryption in Crypttool

Open with new file

Encrypt Assymetric RSA algorithm


First sign and verfy over the data

Use your key to encrypt


Now perform RSa decryption with your key and verifgy digital sign with your key

Now select Digital signature-Signature document


Select the example document
Open one file type hello good evening,save in d drive.then selct hybrid rsa aes encryption
Save the encrypted file
Now decrypt
Press generate
Select number
Select text file
Choose sha
Change small letter in the txt the see the hash value
Modify document
Enter password generate key
Close
Close
Generate key
Store key
Secure Sockets Layer (SSL) is an internet security protocol that uses encryption to secure
communications between clients and servers.
C:\Users\HP>cd..

C:\Users>C:\Nmap

'C:\Nmap' is not recognized as an internal or external command,

operable program or batch file.


C:\Users>cd C:\Nmap

C:\Nmap>nmap

C:\Nmap>nmap www.google.com

Starting Nmap 7.95 ( https://nmap.org ) at 2024-08-22 09:51 India Standard Time

Nmap scan report for www.google.com (142.250.196.36)

Host is up (0.084s latency).

Other addresses for www.google.com (not scanned): 2404:6800:4007:81c::2004

rDNS record for 142.250.196.36: maa03s45-in-f4.1e100.net

Not shown: 998 filtered tcp ports (no-response)

PORT STATE SERVICE

80/tcp open http

443/tcp open https

Nmap done: 1 IP address (1 host up) scanned in 14.03 seconds

C:\Nmap>nmap -oN op.txt 192.168.1.1

Starting Nmap 7.95 ( https://nmap.org ) at 2024-08-22 09:58 India Standard Time

Nmap scan report for 192.168.1.1

Host is up (0.029s latency).

All 1000 scanned ports on 192.168.1.1 are in ignored states.

Not shown: 960 filtered tcp ports (no-response), 40 filtered tcp ports (net-unreach)

Nmap done: 1 IP address (1 host up) scanned in 6.51 seconds

You might also like