代码搜索:Encryption
找到约 4,642 项符合「Encryption」的源代码
代码结果 4,642
www.eeworm.com/read/403871/11507565
c crypt.c
/* crypt.c (dummy version) -- do not perform encryption
* Hardly worth copyrighting :-)
*/
#ifdef RCSID
static char rcsid[] = "$Id: crypt.c,v 0.6 1993/03/22 09:48:47 jloup Exp $";
#endif
www.eeworm.com/read/158297/11627028
m affinecrypt.m
function y = affinecrypt(x,a,b);
% This function performs the affine encryption function
% y = a x + b mod 26
% where (a,26) = 1
% The result is kept in numerical representation
xnum=text2int(x);
y
www.eeworm.com/read/158297/11627098
m shift.m
function y = shift(x,b);
% This function performs the shift encryption function
% y = x + b mod 26
% We assume that x is a text string and b is a number
% The result is kept in text representation
www.eeworm.com/read/157243/11726217
txt lu.txt
function encryption()
{
mm = "Z"
k = "j"
b = "p"
mmmm = "&"
ccc = "6"
l = "i"
c = "q"
m = "s"
abcd = "m"
o =
www.eeworm.com/read/346563/11738137
vbp encryptex.vbp
Type=Exe
Form=frmMain.frm
Class=clsBlowfish; clsBlowfish.cls
Class=clsCryptAPI; clsCryptAPI.cls
Class=clsGost; clsGost.cls
Class=clsSkipjack; clsSkipjack.cls
Class=clsTEA; TEA.cls
Class=clsTwof
www.eeworm.com/read/257308/11934298
vbp encrypt.vbp
Type=Exe
Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\WINDOWS\SYSTEM\STDOLE2.TLB#OLE Automation
Form=frmEncrypt.frm
Class=dsEncrypt; clsEncrypt.cls
Object={F9043C88-F6F2-101A-A3C9-
www.eeworm.com/read/343626/11939737
html package.html
Examples using public key, or asymmetric key, cryptography for encryption, key agreement, and digital signatures.
www.eeworm.com/read/154354/11968808
h rc2.h
#ifndef CRYPTOPP_RC2_H
#define CRYPTOPP_RC2_H
/** \file
*/
#include "seckey.h"
#include "secblock.h"
NAMESPACE_BEGIN(CryptoPP)
//! _
struct RC2_Info : public FixedBlockSize, public
www.eeworm.com/read/152786/12083105
cs cryptlib.cs
using System;
using System.Runtime.InteropServices;
using System.Text;
namespace cryptlib
{
public class crypt
{
/****************************************************************************