FBB::CryptBuf(3bobcat)

Base class for DecryptBuf and EncryptBuf
(libbobcat-dev_6.03.02)

2005-2023

NAME

FBB::CryptBuf - std::streambuf derived base class for DecryptBuf and EncryptBuf

SYNOPSIS

#include <bobcat/cryptbuf>
Linking option: -lbobcat -lcrypto

DESCRIPTION

This class is deprecated and will be removed from Bobcat in a future release. It inherits from FBB::EoiBuf. Classes using CryptBuf may use EoiBuf instead. CryptBuf's member EVP_CIPHER const *md() can be implemented as follows:

    #include <openssl/evp.h>

    EVP_CIPHER const *md(char const *cipherName)
    {
        return EVP_CIPHER_fetch(0, cipherName, 0);
    }
        

NAMESPACE

FBB
All constructors, members, operators and manipulators, mentioned in this man-page, are defined in the namespace FBB.

INHERITS FROM

EoiBuf (and thus from: std::streambuf)

PROTECTED CONSTRUCTOR

Analogously to std::streambuf only a protected constructor is available.

Copy and move constructors (and assignment operators) are not available.

PROTECTED MEMBER FUNCTION

All members of std:streambuf and EoiBuf are available, as FBB::CryptBuf inherits from these classes.

FILES

bobcat/cryptbuf - defines the class interface

SEE ALSO

bobcat(7), eoibuf(3bobcat), eoi(3bobcat)

BUGS

This class is deprecated and will be removed from Bobcat in a future release.

BOBCAT PROJECT FILES

BOBCAT

Bobcat is an acronym of `Brokken's Own Base Classes And Templates'.

COPYRIGHT

This is free software, distributed under the terms of the GNU General Public License (GPL).

AUTHOR

Frank B. Brokken (f.b.brokken@rug.nl).