[][src]Struct kync::plugin::Plugin

pub struct Plugin { /* fields omitted */ }

A key capsule plugin (see "Kync.asciidoc" for further API documentation)

Methods

impl Plugin[src]

pub fn load(path: impl AsRef<Path>) -> Result<Self, KyncError>[src]

Load the library

pub fn capsule_format_uid(&self) -> String[src]

The capsule format UID

pub fn capsule_key_ids(&self) -> Result<Vec<String>, KyncError>[src]

The available capsule keys

pub fn seal(
    &self,
    buf: &mut Vec<u8>,
    key: &[u8],
    capsule_key_id: Option<&[u8]>,
    user_secret: Option<&[u8]>
) -> Result<usize, KyncError>
[src]

Seals a key into buf and returns the amount of bytes written

pub fn open(
    &self,
    buf: &mut Vec<u8>,
    capsule: &[u8],
    user_secret: Option<&[u8]>
) -> Result<usize, KyncError>
[src]

Opens the capsule into buf and returns the amount of bytes written

Auto Trait Implementations

impl Send for Plugin

impl Sync for Plugin

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.