Skip to content

Simple blowfish encryption implementation in Qt with QByteArray support

Notifications You must be signed in to change notification settings

xcoder123/QBlowfish

Repository files navigation

QBlowfish

Simple blowfish encryption implementation in Qt with QByteArray support

This source is result of the following article: http://morf.lv

Sample usage:

QBlowfish *blowfish = new QBlowFish("At least 4 char ASCII key");

blowfish->calcSubKey("Or lets set another key");

QByteArray encryptedData = blowfish->encrypt(raw_data);

QByteArray decryptedData = blowfish->decrypt(encryptedData);

Enjoy

About

Simple blowfish encryption implementation in Qt with QByteArray support

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages