Botan::PK_Encryptor_Filter Class Reference

#include <pk_filts.h>

Inheritance diagram for Botan::PK_Encryptor_Filter:

Botan::Filter

List of all members.

Public Member Functions

virtual bool attachable ()
void end_msg ()
virtual std::string name () const =0
 PK_Encryptor_Filter (PK_Encryptor *c, RandomNumberGenerator &rng_ref)
virtual void start_msg ()
void write (const byte[], u32bit)
 ~PK_Encryptor_Filter ()

Protected Member Functions

void send (const MemoryRegion< byte > &in)
void send (byte in)
void send (const byte in[], u32bit length)


Detailed Description

PK_Encryptor Filter

Definition at line 19 of file pk_filts.h.


Constructor & Destructor Documentation

Botan::PK_Encryptor_Filter::PK_Encryptor_Filter ( PK_Encryptor c,
RandomNumberGenerator rng_ref 
) [inline]

Definition at line 24 of file pk_filts.h.

00025                                                           :
00026          cipher(c), rng(rng_ref) {}
      ~PK_Encryptor_Filter() { delete cipher; }

Botan::PK_Encryptor_Filter::~PK_Encryptor_Filter (  )  [inline]

Definition at line 27 of file pk_filts.h.

00027 { delete cipher; }


Member Function Documentation

virtual bool Botan::Filter::attachable (  )  [inline, virtual, inherited]

Check whether this filter is an attachable filter.

Returns:
true if this filter is attachable, false otherwise

Reimplemented in Botan::DataSink, and Botan::SecureQueue.

Definition at line 50 of file filter.h.

00050 { return true; }

void Botan::PK_Encryptor_Filter::end_msg (  )  [virtual]

Notify that the current message is finished; flush buffers and do end-of-message processing (if any).

Reimplemented from Botan::Filter.

Definition at line 23 of file pk_filts.cpp.

References Botan::MemoryRegion< T >::destroy(), Botan::PK_Encryptor::encrypt(), Botan::Filter::send(), and Botan::MemoryRegion< T >::size().

00024    {
00025    send(cipher->encrypt(buffer, buffer.size(), rng));
00026    buffer.destroy();
00027    }

virtual std::string Botan::Filter::name (  )  const [pure virtual, inherited]

void Botan::Filter::send ( const MemoryRegion< byte > &  in  )  [inline, protected, inherited]

Parameters:
in some input for the filter

Definition at line 68 of file filter.h.

References Botan::MemoryRegion< T >::begin(), Botan::Filter::send(), and Botan::MemoryRegion< T >::size().

Referenced by Botan::Filter::send().

00068 { send(in.begin(), in.size()); }

void Botan::Filter::send ( byte  in  )  [inline, protected, inherited]

Parameters:
in some input for the filter

Definition at line 63 of file filter.h.

References Botan::Filter::send().

Referenced by Botan::Filter::send().

00063 { send(&in, 1); }

void Botan::Filter::send ( const byte  in[],
u32bit  length 
) [protected, inherited]

Parameters:
in some input for the filter
length the length of in

Definition at line 28 of file filter.cpp.

References Botan::MemoryRegion< T >::append(), Botan::MemoryRegion< T >::destroy(), Botan::MemoryRegion< T >::size(), and Botan::Filter::write().

Referenced by Botan::Zlib_Decompression::end_msg(), Botan::Zlib_Compression::end_msg(), Botan::PK_Verifier_Filter::end_msg(), Botan::PK_Signer_Filter::end_msg(), Botan::PK_Decryptor_Filter::end_msg(), end_msg(), Botan::Hex_Encoder::end_msg(), Botan::Bzip_Decompression::end_msg(), Botan::Bzip_Compression::end_msg(), Botan::Base64_Decoder::end_msg(), Botan::Base64_Encoder::end_msg(), Botan::MAC_Filter::end_msg(), Botan::Hash_Filter::end_msg(), Botan::Zlib_Compression::flush(), Botan::Bzip_Compression::flush(), Botan::Zlib_Decompression::write(), Botan::Zlib_Compression::write(), Botan::Bzip_Decompression::write(), Botan::Bzip_Compression::write(), and Botan::StreamCipher_Filter::write().

00029    {
00030    bool nothing_attached = true;
00031    for(u32bit j = 0; j != total_ports(); ++j)
00032       if(next[j])
00033          {
00034          if(write_queue.size())
00035             next[j]->write(write_queue, write_queue.size());
00036          next[j]->write(input, length);
00037          nothing_attached = false;
00038          }
00039 
00040    if(nothing_attached)
00041       write_queue.append(input, length);
00042    else
00043       write_queue.destroy();
00044    }

virtual void Botan::Filter::start_msg (  )  [inline, virtual, inherited]

Start a new message. Must be closed by end_msg() before another message can be started.

Reimplemented in Botan::Bzip_Compression, Botan::Bzip_Decompression, Botan::EAX_Base, Botan::Zlib_Compression, Botan::Zlib_Decompression, Botan::PBE_PKCS5v15, and Botan::PBE_PKCS5v20.

Definition at line 38 of file filter.h.

00038 {}

void Botan::PK_Encryptor_Filter::write ( const   input[],
u32bit  length 
) [virtual]

Write a portion of a message to this filter.

Parameters:
input the input as a byte array
length the length of the byte array input

Implements Botan::Filter.

Definition at line 15 of file pk_filts.cpp.

References Botan::MemoryRegion< T >::append().

00016    {
00017    buffer.append(input, length);
00018    }


The documentation for this class was generated from the following files:

Generated on Fri Aug 13 16:20:59 2010 for Botan by  doxygen 1.5.8