[][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]

Returns the capsule format UID

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

The available crypto item IDs

pub fn seal_buf_len(&self, input_len: usize) -> usize[src]

The buffer size necessary for a call to seal

pub fn seal(
    &self,
    buf: &mut [u8],
    key: &[u8],
    crypto_item_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_buf_len(&self, input_len: usize) -> usize[src]

The buffer size necessary for a call to open

pub fn open(
    &self,
    buf: &mut [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 = Infallible

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

The type returned in the event of a conversion error.