代码搜索:Decrypt
找到约 1,475 项符合「Decrypt」的源代码
代码结果 1,475
www.eeworm.com/read/492302/6420961
c cfb_decrypt.c
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The librar
www.eeworm.com/read/492302/6421046
c ofb_decrypt.c
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The librar
www.eeworm.com/read/492302/6421087
c eax_decrypt.c
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The librar
www.eeworm.com/read/492302/6421106
c ecb_decrypt.c
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The librar
www.eeworm.com/read/492302/6421253
c cbc_decrypt.c
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The librar
www.eeworm.com/read/488542/6488914
c bl_decrypt.c
//*****************************************************************************
//
// bl_decrypt.c - Code for performing an in-place decryption of the firmware
// image as it is down
www.eeworm.com/read/488542/6488924
h bl_decrypt.h
//*****************************************************************************
//
// bl_decrypt.h - Definitions for the decryption function.
//
// Copyright (c) 2007-2008 Luminary Micro, Inc. Al
www.eeworm.com/read/488542/6488953
o bl_decrypt.o
www.eeworm.com/read/483580/6599179
m decrypt1.m
clear;clc;
x=imread('加密后的lena.bmp','bmp');
[a b c]=size(x);
N=a*b;
m(1)=input('请输入密钥: ');
disp('解密中');
for i=1:N-1
m(i+1)=4*m(i)-4*m(i)^2;
end
m=mod(1000*m,256);
m=uint8(m);
n=1;
for
www.eeworm.com/read/477984/6726925