encryptodon
v0.1.8
Published
Pachyderm Goes Private ππΆοΈ
Downloads
4
Readme
Encryptodon
Pachyderm Goes Private ππΆοΈ
Encryption
// JavaScript (web)
import init, { decrypt, encrypt, generate_keys } from "https://unpkg.com/[email protected]/encryptodon.js";
(async () => {
await init();
const your_keys = generate_keys();
const their_keys = generate_keys();
// your end
const status = "i'm a sneaky elephant ππ";
const encrypted_status = encrypt(status, their_keys.public, your_keys.private);
// their end
const decrypted_status = decrypt(encrypted_status, your_keys.public, their_keys.private);
console.log(decrypted_status); // -> i'm a sneaky elephant ππ
})();
// Rust (embedded)
let your_keys = encryptodon::generate_keys();
let their_keys = encryptodon::generate_keys();
// your end
let status = "i toot privately ππ¨".to_string();
let encrypted_status = encryptodon::encrypt(status.clone(), their_keys.public(), your_keys.private()).unwrap();
// their end
let decrypted_status = encryptodon::decrypt(encrypted_status, your_keys.public(), their_keys.private()).unwrap();
println!(decrypted_status); // -> i toot privately ππ¨
Bio Parsing
// JavaScript (web)
import init, { extract_key_from_bio } from "https://unpkg.com/[email protected]/encryptodon.js";
(async () => {
await init();
const bio = "i eat food. ππ:0bmKKWS04lZzoPC/KlS1kJgWN+XnvBw0yn4PPnot73E=";
const key = extract_key_from_bio(bio);
console.log(key); // -> 0bmKKWS04lZzoPC/KlS1kJgWN+XnvBw0yn4PPnot73E=
})();
// Rust (embedded)
let bio = "ππ:0bmKKWS04lZzoPC/KlS1kJgWN+XnvBw0yn4PPnot73E=\nmore stuff...".to_string();
let key = encryptodon::extract_key_from_bio(bio).unwrap();
println!(key); // -> 0bmKKWS04lZzoPC/KlS1kJgWN+XnvBw0yn4PPnot73E=