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

This package is an implementation of xor cipher for encrypting strings 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 #

Web screenshots #

2
likes
140
pub points
69%
popularity

Publisher

unverified uploader

This package is an implementation of xor cipher for encrypting strings 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