harpo 1.2.0-nullsafety.0 copy "harpo: ^1.2.0-nullsafety.0" to clipboard
harpo: ^1.2.0-nullsafety.0 copied to clipboard

outdated

A set of functions for numeric encryption and decryption. This is also a practical implementation of my algorithms for encryption and decrpytion.

example/example.md

EXAMPLE FOR HARPO #

Here is the example's pubspec.yml:

name: test
description: A test app for harpo!
version: 1.0.0
homepage: https://github.com/iamtheblackunicorn/Harpo
publish_to: none
environment:
  sdk: '>=2.12.0 <3.0.0'
dependencies:
  harpo:
    git: git://github.com/iamtheblackunicorn/Harpo.git
dev_dependencies:
  harpo:
    git: git://github.com/iamtheblackunicorn/Harpo.git

Here is the example itself:

/*
Harpo by Alexander Abraham
licensed under the MIT license
*/
import 'package:harpo/harpo.dart';
// You could also just copy and paste any of the functions
// from the docs and use Harpo like this:
void main() {
  String encryptedLetter = encryptLetterBinary(5,'A');
  print(encryptedLetter);
}
// and then run it with "dart myprogram.dart"
1
likes
0
pub points
0%
popularity

Publisher

verified publisherblckunicorn.art

A set of functions for numeric encryption and decryption. This is also a practical implementation of my algorithms for encryption and decrpytion.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

pedantic

More

Packages that depend on harpo