代码搜索:Encryption
找到约 4,642 项符合「Encryption」的源代码
代码结果 4,642
www.eeworm.com/read/424671/10429228
h encryption.h
// Encryption.h: interface for the CEncryption class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_ENCRYPTION_H__B257F30A_8497_4C44_BE61_6E62EAE0998C
www.eeworm.com/read/424671/10429274
obj encryption.obj
www.eeworm.com/read/424671/10429329
cpp encryption.cpp
// Encryption.cpp: implementation of the CEncryption class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "FileEncryption.h"
#include "E
www.eeworm.com/read/159231/10676853
bas encryption.bas
Attribute VB_Name = "Module3"
Option Explicit
Dim i As Integer, j As Integer, k As Integer
Dim WheelIndex1 As Integer, WheelIndex2 As Integer, WheelIndex3 As Integer
Dim WheelIndex4 As Integer,
www.eeworm.com/read/421652/10716963
h encryption.h
#include
#include//for exit()
#include
void encryption()
{
//模m的整数幂的计算
// coute >>n;
int arra
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/456912/7337205
m encryption.m
function c = encryption(val,e,n)
global padd s1 s2
cut_length = 50;
c=[];
m = val;%接下来的这段程序是将要加密的字符串截成cut_length长的矩阵
[m_int2 padd] = mesgcut(m,cut_length);
m_int2 = double(m_int2);
m_char = i
www.eeworm.com/read/450058/7491217
txt encryption.txt
给文件加密的技术很多,其中又分为不同等级,以适合不同场合的需要。这里给出最简单的文件加密技术,即采用文件逐字节与密码异或方式对文件进行加密,当解密时,只需再运行一遍加密程序即可。
下面是一个实例程序,能对任意一个文件进行加密,密码要求用户输入,限8位以内(当然你可以再更改)。程序有很好的容错设计,这是我们应该学习的。 /* Turbo 2.0 pass. give file a p ...