Skip to content

labolida/crybull-classic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Crybull classic

Command line tool to encode files with password.

crybull mysecretkey mymessage.txt encrypted-message.x

base64 encrypted-message.x > sendToaFriend.x

Recursive

find -type f -exec echo crybull $pwd {} {}.crp \;

Compile and test it

File "comp"

#!/bin/bash
clear 


export KEYPASS1=$(cat key-password-001)
export KEYPASS2=$(cat key-password-002)

echo "Using password1: " $KEYPASS1
echo "Using password2: " $KEYPASS2


rm crybull
gcc crybull.c  -o crybull

./crybull



./crybull $KEYPASS1 message temp1

./crybull $KEYPASS2 temp1 temp2

./crybull $KEYPASS2 temp2 temp1

./crybull $KEYPASS1 temp1 decoded

cat decoded

About

Cryptography tool (command-line)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages