[][src]Struct kync::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) -> FormatUid[src]

The capsule format UID

pub fn capsule_key_ids(
    &self,
    buf: impl AsCSliceMut
) -> Result<usize, KyncError>
[src]

The available capsule keys

pub fn seal(
    &self,
    buf: impl AsCSliceMut,
    key_to_seal: impl AsCSlice,
    capsule_key_id: Option<impl AsCSlice>,
    user_secret: Option<impl AsCSlice>
) -> Result<usize, KyncError>
[src]

Seals a key into der_payload and returns the der_payload length

pub fn open(
    &self,
    buf: impl AsCSliceMut,
    payload: impl AsCSlice,
    user_secret: Option<impl AsCSlice>
) -> Result<usize, KyncError>
[src]

Opens the capsule into key and returns the key length

Auto Trait Implementations

impl Send for Plugin

impl Sync for Plugin

Blanket Implementations

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

impl<T> From for 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, 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.

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

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