summaryrefslogtreecommitdiffstats
path: root/openpgp-ffi/src/crypto.rs
blob: 51cbf91c9255528dd718693d0485935627e62988 (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
//! Cryptographic primitives.
//!
//! Wraps [`sequoia-openpgp::crypto`].
//!
//! [`sequoia-openpgp::crypto`]: ../../../sequoia_openpgp/crypto/index.html

extern crate sequoia_openpgp;
use self::sequoia_openpgp::{
    crypto,
    packet::Key,
};

/// Frees a signer.
#[::ffi_catch_abort] #[no_mangle]
pub extern "system" fn pgp_signer_free
    (s: Option<&mut &'static mut crypto::Signer>)
{
    ffi_free!(s)
}

/// Creates a new key pair.
#[::ffi_catch_abort] #[no_mangle]
pub extern "system" fn pgp_key_pair_new
    (errp: Option<&mut *mut failure::Error>, public: *mut Key, secret: *mut crypto::mpis::SecretKey)
     -> *mut crypto::KeyPair
{
    ffi_make_fry_from_errp!(errp);
    let public = ffi_param_move!(public);
    let secret = ffi_param_move!(secret);
    ffi_try_box!(crypto::KeyPair::new(*public, *secret))
}

/// Frees a key pair.
#[::ffi_catch_abort] #[no_mangle]
pub extern "system" fn pgp_key_pair_free
    (kp: Option<&mut crypto::KeyPair>)
{
    ffi_free!(kp)
}

/// Creates a signer from a key pair.
///
/// Note that the returned object merely references the key pair, and
/// must not outlive the key pair.
#[::ffi_catch_abort] #[no_mangle]
pub extern "system" fn pgp_key_pair_as_signer
    (kp: *mut crypto::KeyPair)
     -> *mut &'static mut crypto::Signer
{
    let kp = ffi_param_ref_mut!(kp);
    let signer: &mut crypto::Signer = kp;
    box_raw!(signer)
    //box_raw!(kp)
}