summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 79c0658e2ba1bacc884e072e75af97992110676f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
mod utils;

use wasm_bindgen::prelude::*;

use std::io::{Read, Write};

use age::x25519::Recipient;

//use rand::{rngs::OsRng, RngCore};

// When the `wee_alloc` feature is enabled, use `wee_alloc` as the global
// allocator.
#[cfg(feature = "wee_alloc")]
#[global_allocator]
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;

#[wasm_bindgen]
extern "C" {
    fn alert(s: &str);
}

#[wasm_bindgen]
pub fn greet() {
    alert("Hello, {{project-name}}!");
}

#[wasm_bindgen]
pub fn age_encrypt(plaintext: String, key: String) -> Option<Vec<u8>> {
    utils::set_panic_hook();

    let pubkey = key.parse::<Recipient>().ok()?;

    let encryptor = age::Encryptor::with_recipients(vec![Box::new(pubkey)]);

    let mut encrypted = vec![];

    let mut writer = encryptor.wrap_output(&mut encrypted).ok()?;

    writer.write_all(&plaintext.as_bytes()).ok()?;
    writer.finish().ok()?;

    Some(encrypted)
}

#[wasm_bindgen]
pub fn age_decrypt_passphrase(blob: Vec<u8>, passphrase: String) -> Option<String> {
    utils::set_panic_hook();


    let decryptor = match age::Decryptor::new(&blob[..]).unwrap() {
        age::Decryptor::Passphrase(d) => d,
        _ => panic!("something very wrong happened!"),
    };

    let mut decrypted = vec![];
    let mut reader = decryptor
        .decrypt(&secrecy::Secret::new(passphrase), None)
        .ok()?;
    reader.read_to_end(&mut decrypted).ok()?;
    Some(std::str::from_utf8(&decrypted).ok()?.to_owned())
}