mirror of
https://github.com/avinal/blowfish.git
synced 2026-01-09 06:18:32 +05:30
- regular blowfish only uses 64 bits - blowfish2 uses 128 bits like AES Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
15 lines
144 B
Bash
Executable File
15 lines
144 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
if [ -d "build" ]
|
|
then
|
|
cd build
|
|
else
|
|
mkdir build
|
|
cd build
|
|
fi
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Debug ..
|
|
|
|
cmake --build . |