代码搜索:Encrypt
找到约 3,742 项符合「Encrypt」的源代码
代码结果 3,742
www.eeworm.com/read/118050/14890050
cs symmetricmethod.cs
using System;
using System.Data;
using System.IO;
using System.Text;
using System.Security.Cryptography;
namespace Encrypt
{
///
/// SymmetricMethod 的摘要说明。
/// 加密类
/// 刘兴苗
www.eeworm.com/read/114602/15046374
man des.man
.TH DES 1
.SH NAME
des - encrypt or decrypt data using Data Encryption Standard
.SH SYNOPSIS
.B des
(
.B \-e
|
.B \-E
) | (
.B \-d
|
.B \-D
) | (
.B \-\fR[\fPcC\fR][\fPckname\fR]\fP
)
www.eeworm.com/read/114602/15046424
version
Version 4.04
Fixed a few tests in destest. Also added x86 assember for
des_ncbc_encrypt() which is the standard cbc mode function.
This makes a very very large performace difference.
Ariel Gl
www.eeworm.com/read/460593/1560029
h aes.h
/**
* \file aes.h
*/
#ifndef XYSSL_AES_H
#define XYSSL_AES_H
#define AES_ENCRYPT 1
#define AES_DECRYPT 0
/**
* \brief AES context structure
*/
typedef struct
{
int nr;
www.eeworm.com/read/460593/1560042
h des.h
/**
* \file des.h
*/
#ifndef XYSSL_DES_H
#define XYSSL_DES_H
#define DES_ENCRYPT 1
#define DES_DECRYPT 0
/**
* \brief DES context structure
*/
typedef struct
{
int mode;
www.eeworm.com/read/237181/4630240
c serpent.c
#include "tomcrypt.h"
#ifdef SERPENT
const struct ltc_cipher_descriptor serpent_desc =
{
"serpent",
5,
16, 32, 16, 32,
&serpent_setup,
&serpent_ecb_encrypt,
&serpent_ecb_decr
www.eeworm.com/read/213105/4929805
pas comfunc.pas
unit comFunc;
interface
const
C1 = 52845;
C2 = 22719;
function Encrypt(const S: String; Key: Word): String;
function Decrypt(const S: String; Key: Word): String;
function isMoney(s:stri
www.eeworm.com/read/209211/4983030
c auth_userpasswd.c
#include
#include
#include
#include
#include "authlocal.h"
/*
* compute the proper response. We encrypt the ascii of
* challenge number, with trailing binary ze
www.eeworm.com/read/209211/4986712
c auth_userpasswd.c
#include
#include
#include
#include
#include "authlocal.h"
/*
* compute the proper response. We encrypt the ascii of
* challenge number, with trailing binary ze
www.eeworm.com/read/185637/5237034
java util.java
package com.crypto.encrypt;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.BufferedOutputStream;
import java.io.IOException;
import java.io.FileInputStream;
import jav