~ubuntu-branches/ubuntu/utopic/libcrypto++/utopic-security

« back to all changes in this revision

Viewing changes to seckey.h

  • Committer: Bazaar Package Importer
  • Author(s): Jens Peter Secher
  • Date: 2009-04-28 23:23:21 UTC
  • mfrom: (5.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090428232321-wc1o1iipyb426h3x
Tags: 5.6.0-2
* Added a package with debug symbols.
* Drop the DCRYPTOPP_DISABLE_ASM flag to avoid segfault in amule on
  i386.
  (Closes: #525071)

Show diffs side-by-side

added added

removed removed

Lines of Context:
206
206
        typedef SymmetricCipher Decryption;
207
207
};
208
208
 
 
209
/*! \brief Each class derived from this one defines two types, Encryption and Decryption, 
 
210
        both of which implement the AuthenticatedSymmetricCipher interface. */
 
211
struct AuthenticatedSymmetricCipherDocumentation
 
212
{
 
213
        //! implements the AuthenticatedSymmetricCipher interface
 
214
        typedef AuthenticatedSymmetricCipher Encryption;
 
215
        //! implements the AuthenticatedSymmetricCipher interface
 
216
        typedef AuthenticatedSymmetricCipher Decryption;
 
217
};
 
218
 
209
219
NAMESPACE_END
210
220
 
211
221
#endif