indy-sys 1.11.1-dev-1318

FFI bindings to Libindy C API
Documentation
use super::*;

use {CString, Error, CommandHandle, WalletHandle};

extern {

    #[no_mangle]
    pub fn indy_is_pairwise_exists(command_handle: CommandHandle,
                                   wallet_handle: WalletHandle,
                                   their_did: CString,
                                   cb: Option<ResponseBoolCB>) -> Error;

    #[no_mangle]
    pub fn indy_create_pairwise(command_handle: CommandHandle,
                                wallet_handle: WalletHandle,
                                their_did: CString,
                                my_did: CString,
                                metadata: CString,
                                cb: Option<ResponseEmptyCB>) -> Error;

    #[no_mangle]
    pub fn indy_list_pairwise(command_handle: CommandHandle,
                              wallet_handle: WalletHandle,
                              cb: Option<ResponseStringCB>) -> Error;

    #[no_mangle]
    pub fn indy_get_pairwise(command_handle: CommandHandle,
                             wallet_handle: WalletHandle,
                             their_did: CString,
                             cb: Option<ResponseStringCB>) -> Error;

    #[no_mangle]
    pub fn indy_set_pairwise_metadata(command_handle: CommandHandle,
                                      wallet_handle: WalletHandle,
                                      their_did: CString,
                                      metadata: CString,
                                      cb: Option<ResponseEmptyCB>) -> Error;
}