xor_encryption 0.0.1 copy "xor_encryption: ^0.0.1" to clipboard
xor_encryption: ^0.0.1 copied to clipboard

Implementation of xor cipher in flutter

XOR Encryption is an encryption method used to encrypt data and is hard to crack by brute-force method, i.e generating random encryption keys to match with the correct one. The XOR Encryption algorithm is a very effective yet easy to implement method of symmetric encryption. Due to its effectiveness and simplicity, the XOR Encryption is an extremely common component used in more complex encryption algorithms used nowadays. In cryptography, the simple XOR cipher is a type of additive cipher, an encryption algorithm that operates according to the principles of exclusive or operator.

Features #

  • Encryption & Decryption of String using XOR Cipher

Getting started #

    dart pub add xor_encryption
import 'package:xor_encryption/xor_encryption.dart';

Usage #

void main() {
    final String key = XorCipher().getSecretKey(20);
    print('key: $key');
    String text = '123456';
    final encrypted =XorCipher().encryptData(text,key);
    print('encreypteed: ${encrypted}');
    final decrypted =XorCipher().encryptData(encrypted,key);
    print('encreypteed: ${decrypted}');
}

Mobile Screenshots #

Android 1 Android 1 Android 1 Android 1 Android 1

Web screenshots #

Web 1 Web 1 Web 1 Web 1 Web 1

2
likes
140
pub points
65%
popularity

Publisher

unverified uploader

Implementation of xor cipher in flutter

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface

More

Packages that depend on xor_encryption