摘要: public class BlowfishCBC : BlowfishECB { // here we hold the CBC IV long m_lCBCIV; public BlowfishCBC() { } /** * get the current CBC IV (for cipher r 阅读全文
posted @ 2021-10-27 11:13 龙丶谈笑风声 阅读(165) 评论(0) 推荐(0)
摘要: public class BlowfishECB { /** maximum possible key length */ public readonly static int MAXKEYLENGTH = 56; /** block size of this cipher (in bytes) * 阅读全文
posted @ 2021-10-27 11:13 龙丶谈笑风声 阅读(73) 评论(0) 推荐(0)
摘要: public class Blowfish { private BlowfishCBC m_bfish; private static Random m_rndGen = new Random(); private byte[] SHA1keys(string key) { byte[] keyAr 阅读全文
posted @ 2021-10-27 11:12 龙丶谈笑风声 阅读(261) 评论(0) 推荐(0)