From 03e8c5ad314252cde58c53688c70b9f836a1d5b4 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 28 Nov 2012 17:39:09 +0000 Subject: More comments; moved the encryption system to unstable. --- src/unstable/blowfish.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/unstable/blowfish.cpp (limited to 'src/unstable/blowfish.cpp') diff --git a/src/unstable/blowfish.cpp b/src/unstable/blowfish.cpp new file mode 100644 index 0000000..3da32a9 --- /dev/null +++ b/src/unstable/blowfish.cpp @@ -0,0 +1,13 @@ +/* + * Copyright (C) 2007-2012 Xagasoft, All rights reserved. + * + * This file is part of the libbu++ library and is released under the + * terms of the license contained in the file LICENSE. + */ + +#include "bu/blowfish.h" + +template class Bu::CipherModeEcb<8, Bu::Blowfish<1> >; +template class Bu::CipherModeCfb<8, Bu::Blowfish<1> >; +template class Bu::CipherModeCbc<8, Bu::Blowfish<1> >; +template class Bu::CipherModeOfb<8, Bu::Blowfish<1> >; -- cgit v1.2.3