Struct openssl::crypto::symm::Crypter [] [src]

pub struct Crypter {
    // some fields omitted
}

Represents a symmetric cipher context.

Methods

impl Crypter
[src]

Enables or disables padding. If padding is disabled, total amount of data encrypted must be a multiple of block size.

Initializes this crypter.

Update this crypter with more data to encrypt or decrypt. Returns encrypted or decrypted bytes.

Finish crypting. Returns the remaining partial block of output, if any.

Trait Implementations

impl Drop for Crypter
[src]

A method called when the value goes out of scope. Read more