代码搜索:Cipher

找到约 3,792 项符合「Cipher」的源代码

代码结果 3,792
www.eeworm.com/read/261015/11672972

java~62~ encrypt.java~62~

package chat; import java.security.*; import javax.crypto.*; import javax.crypto.spec.*; import java.io.*; public class Encrypt { final String Algorithm = "DES/CBC/PKCS5Padding"; St
www.eeworm.com/read/261015/11673069

java~66~ encrypt.java~66~

package chat; import java.security.*; import javax.crypto.*; import javax.crypto.spec.*; import java.io.*; public class Encrypt { final String Algorithm = "DES/CBC/PKCS5Padding"; St
www.eeworm.com/read/261015/11673184

java~70~ encrypt.java~70~

package chat; import java.security.*; import javax.crypto.*; import javax.crypto.spec.*; import java.io.*; public class Encrypt { final String Algorithm = "DES/CBC/PKCS5Padding"; St
www.eeworm.com/read/261015/11673212

java~65~ encrypt.java~65~

package chat; import java.security.*; import javax.crypto.*; import javax.crypto.spec.*; import java.io.*; public class Encrypt { final String Algorithm = "DES/CBC/PKCS5Padding"; St
www.eeworm.com/read/157666/11674621

h tomcrypt_mac.h

#ifdef HMAC typedef struct Hmac_state { hash_state md; int hash; hash_state hashstate; unsigned char *key; } hmac_state; int hmac_init(hmac_state *hmac, int ha
www.eeworm.com/read/157666/11674711

h tomcrypt_mac.h

#ifdef HMAC typedef struct Hmac_state { hash_state md; int hash; hash_state hashstate; unsigned char *key; } hmac_state; int hmac_init(hmac_state *hmac, int ha
www.eeworm.com/read/260514/11722521

h rng.h

#ifndef RNG_H #define RNG_H #include "cryptlib.h" // linear congruential generator // originally by William S. England // do not use for cryptographic purposes class LC_RNG : public Rand
www.eeworm.com/read/260514/11722531

h filters.h

#ifndef FILTERS_H #define FILTERS_H #include "cryptlib.h" #include "queue.h" class Filter : public BufferedTransformation { public: Filter(BufferedTransformation *outQ) : outQu
www.eeworm.com/read/260514/11722534

cpp modes.cpp

#include #include "modes.h" #include "misc.h" Mode::Mode(BlockTransformation &c, const byte *IV) : cipher(c), S(cipher.BlockSize()), reg(SecAlloc(byte, 2*S)),
www.eeworm.com/read/260514/11722540

cpp filters.cpp

#include #include #include "filters.h" #include "misc.h" void Filter::Detach(BufferedTransformation *newOut) { outQueue->Close(); outQueue->TransferTo(*newOut)