代码搜索:DES加密

找到约 10,000 项符合「DES加密」的源代码

代码结果 10,000
www.eeworm.com/read/450639/7479767

times

SGI Challenge (MIPS R4400 200mhz) - gcc -O2 set_key per sec = 114141.13 ( 8.8uS) DES ecb bytes per sec = 1573472.84 ( 5.1uS) DES cbc bytes per sec = 1580418.20 ( 5.1uS) crypt
www.eeworm.com/read/450639/7479782

gnumakef

# This was GNUmakefile # I have changed the library a bit since I was last able to test the # build so this may require a little tweaking. # have fun. ifeq ($(wildcard ../Rules),) # no glibc i
www.eeworm.com/read/446567/7576645

cpp wjcdestest.cpp

// 3-Des test #include "WjcDes.h" #include "stdio.h" #include "string.h" #include "memory.h" void main() { char key[]={0,2,0,0,9,3,5,1},buf[255]; char str[]="Welcome to My 3-DES Test! --
www.eeworm.com/read/446409/7579665

lst flash.lst

C51 COMPILER V7.06 FLASH 04/04/2009 12:20:10 PAGE 1 C51 COMPILER V7.06, COMPILATION OF MODULE FLASH OBJECT MODULE PLACED IN F
www.eeworm.com/read/442394/7653584

h c54lms.h

#include "TMS320.H" #ifndef _C54LMS #define _C54LMS short dlms(DATA *x,DATA *h,DATA *r, DATA **d, DATA *des, DATA step, ushort nh, ushort nx); short nblms (DATA *x,DATA *h,DATA *r, DATA **d, D
www.eeworm.com/read/442394/7653610

asm test.asm

;*************************************************************** ;* TMS320C54x ANSI C Codegen Version 1.10 * ;* Date/Time created: Sat Jun 12 16:55:34 1999 * ;*
www.eeworm.com/read/441887/7663229

m constante.m

% creation des matrices constantes % origine destination ; lien ; capacite global or_des capa lien % matrices de test or_des=[ 0 0 0 2 ; 0 0 5 0 ; 0 0 0 0 ;
www.eeworm.com/read/438779/7727170

lst iap.lst

C51 COMPILER V7.50 IAP 10/12/2006 15:31:41 PAGE 1 C51 COMPILER V7.50, COMPILATION OF MODULE IAP OBJECT MODULE PLACED IN .\R
www.eeworm.com/read/198724/7915701

c test.c

#include // Standard Equations #define LED BIT5 void InitPort() { P1DIR=0; P2DIR=0; P3DIR=0; P1SEL=0; P2SEL=0; P3SEL=0; P
www.eeworm.com/read/197881/7964422

txt 关于数据校验.txt

1.什么是数据校验 通俗的说,就是为保证数据的完整性,用一种指定的算法对原始数据计算出 的一个校验值。接收方用同样的算法计算一次校验值,如果和随数据提供的 校验值一样,就说明数据是完整的。 2.最简单的检验 实现方法:最简单的校验就是把原始数据和待比较数据直接进行比较,看是否完全一样 这种方法是最安全最 ...