代码搜索:Cipher
找到约 3,792 项符合「Cipher」的源代码
代码结果 3,792
www.eeworm.com/read/172555/5384104
java securityfactory.java
package org.j3de.security;
import java.security.PublicKey;
import java.security.Signature;
import javax.crypto.Cipher;
import org.j3de.util.Configurable;
public interface SecurityFactor
www.eeworm.com/read/171081/5398912
svn-base sapphire.h.svn-base
/*
from sapphire.h -- Interface for the Saphire II stream cipher.
Dedicated to the Public Domain the author and inventor
(Michael Paul Johnson). This code comes with no warranty.
Use it at
www.eeworm.com/read/171081/5398929
h sapphire.h
/*
from sapphire.h -- Interface for the Saphire II stream cipher.
Dedicated to the Public Domain the author and inventor
(Michael Paul Johnson). This code comes with no warranty.
Use it at
www.eeworm.com/read/169602/5420323
cpp test.cpp
// test.cpp
// test taocrypt functionality
#include
#include
#include "runtime.hpp"
#include "sha.hpp"
#include "md5.hpp"
#include "md2.hpp"
#include "md4.hpp"
#include "ripemd.
www.eeworm.com/read/167133/5469381
java testgnucrypto.java
import gnu.crypto.cipher.CipherFactory;
import gnu.crypto.cipher.IBlockCipher;
import java.util.Iterator;
class TestGnuCrypto
{
// default ctor
public static final void main(String[] args)
www.eeworm.com/read/161692/5550666
java bccipher.java
import org.bouncycastle.crypto.*;
import org.bouncycastle.crypto.engines.*;
import org.bouncycastle.crypto.modes.*;
import org.bouncycastle.crypto.params.*;
public class BCCipher
{
private Bu
www.eeworm.com/read/252613/6787729
cpp modes.cpp
// modes.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#include "modes.h"
NAMESPACE_BEGIN(CryptoPP)
CipherMode::CipherMode(const BlockTransformation &c, const byt
www.eeworm.com/read/252613/6787733
cpp cbc.cpp
// cbc.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#include "cbc.h"
NAMESPACE_BEGIN(CryptoPP)
CBCPaddedEncryptor::CBCPaddedEncryptor(const BlockTransformation &
www.eeworm.com/read/252613/6787769
h modes.h
#ifndef CRYPTOPP_MODES_H
#define CRYPTOPP_MODES_H
#include "cryptlib.h"
#include "misc.h"
NAMESPACE_BEGIN(CryptoPP)
class CipherMode
{
protected:
CipherMode(const BlockTransformation &c
www.eeworm.com/read/252613/6787870
h rng.h
#ifndef CRYPTOPP_RNG_H
#define CRYPTOPP_RNG_H
#include "cryptlib.h"
#include "filters.h"
NAMESPACE_BEGIN(CryptoPP)
// linear congruential generator
// originally by William S. England
/