代码搜索:Encrypt
找到约 3,742 项符合「Encrypt」的源代码
代码结果 3,742
www.eeworm.com/read/164812/10086873
c aestime.c
/*
* aestime - time how long computations take on AES algorithm
* for cipher init, encrypt 1Mb, decrypt 1Mb, set 1000 key pairs
*
* Customise the ALG name and include file below and lin
www.eeworm.com/read/355787/10244069
h 复件 desencrypt.h
// DesEncrypt.h --- interface for the DES encrypt
#if !defined(XIN_DESENCRYPT_H__INCLUDED_)
#define XIN_DESENCRYPT_H__INCLUDED_
#ifdef TCPSOCKET_EXPORTS
#define TCP_API __declspec(dllexport)
#e
www.eeworm.com/read/158808/10247339
~pas crypt.~pas
unit crypt;
interface
USES
Classes;
const
C1 = 52845;
C2 = 22719;
function Encrypt( S: String; Key: Word): String;
function Decrypt( S: String; Key: Word): String;
impleme
www.eeworm.com/read/158808/10247347
pas crypt.pas
unit crypt;
interface
USES
Classes;
const
C1 = 52845;
C2 = 22719;
function Encrypt( S: String; Key: Word): String;
function Decrypt( S: String; Key: Word): String;
impleme
www.eeworm.com/read/278436/10535870
cpp kaes.cpp
//////////////////////////////////////////////////////////////////////
// KAES.cpp: 实现AES加密的KAES类
//原著:James McCaffrey: MSDN Magazine November 2003 (Encrypt It)
// 并参考了[小刀人]对上文的翻译.
//改写:king_
www.eeworm.com/read/417325/10994295
py urldecode.py
# !/usr/bin/env python
# -*- coding: UTF-8 -*-
# author: watermoon
# date: 02/18/2009
import string
class codec(object): # encode and decode, maybe encrypt and decrypt is better
def __init__(self)
www.eeworm.com/read/465112/6966596
c main.c
/* Encrypt/decrypt command compatible with Sun's "des" command */
#include
char iv[8]; /* Initial vector for CBC mode */
int block;
main(argc,argv)
int argc;
char *argv[];
{
int
www.eeworm.com/read/467898/7003492
bas encryption.bas
Attribute VB_Name = "Encryption"
Option Explicit
Public Function Encrypt(Key1 As String, txtcode As String)
Dim i, j, k As Integer, thekey
Dim a, b, CryptText As String
On Error Resume Next
www.eeworm.com/read/161088/7122790
~pas crypt.~pas
unit crypt;
interface
USES
Classes;
const
C1 = 52845;
C2 = 22719;
function Encrypt( S: String; Key: Word): String;
function Decrypt( S: String; Key: Word): String;
impleme