ext/polarssl/polarssl.c in polarssl-0.0.3 vs ext/polarssl/polarssl.c in polarssl-0.0.5

- old
+ new

@@ -19,21 +19,23 @@ * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ - #include "ruby.h" #include "entropy.h" #include "ctr_drbg.h" #include "ssl.h" +#include "cipher.h" VALUE rb_mPolarSSL; void Init_polarssl() { + /* The PolarSSL module */ rb_mPolarSSL = rb_define_module( "PolarSSL" ); Init_entropy( ); Init_ctr_drbg( ); Init_ssl( ); + Init_cipher( ); }