95aaa8 | #pike __REAL_VERSION__ | |||
af1083 | //! BLOWFISH is a block cipher designed by Bruce Schneier. It uses a //! block size of 64 bits (8 octets), and a variable key size, up to //! 448 bits. It has some weak keys. | |||
627c73 | #if constant(Nettle) && constant(Nettle.BLOWFISH_Info) | |||
a164de | ||||
95aaa8 | // NOTE: Depends on the order of INIT invocations. inherit Nettle.BLOWFISH_Info; inherit .Cipher; .CipherState `()() { return Nettle.BLOWFISH_State(); } | |||
a164de | ||||
627c73 | #else constant this_program_does_not_exist=1; | |||
a164de | #endif |