CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 系统编程 搜索资源 - 字符串

搜索资源列表

  1. HideInfod

    0下载:
  2. 一个用于加密解密的VC++源代码。对字符串进行加密,可逆算法。由VB代码改写。-one for encryption and decryption of VC source. The string of encrypted algorithm reversible. By VB code rewrite.
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:79128
    • 提供者:蚂蚁上树
  1. EncryptByMd5

    0下载:
  2. 这是一个使用MD5算法对字符串进行加密的小程序-MD5 algorithm used to encrypt string of small programs
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:41203
    • 提供者:邓洁
  1. getlinuxnetstream

    0下载:
  2. 在linux下得到网络流量,通过分析字符串得到-under network traffic analysis to be string
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:950
    • 提供者:double
  1. GenEncTable

    0下载:
  2. 产生随机加密字符串,可用于产品的标识及权限控制等功能的实现上-randomly generated string encryption can be used for product identification and access control functions in the realization
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:45907
    • 提供者:liaoheping
  1. KString_class_src

    0下载:
  2. 一个非MFC的类似CString的字符串类,实现了各种字符串的操作。-a similar non-MFC CString string and realizes the various string operation.
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:4459
    • 提供者:金阳
  1. REGEXPP3.ZIP

    0下载:
  2. 正则表达式源代码,用于对字符串的处理,如电话号码的识别等-regular expression source code for the string processing, such as telephone numbers and other identification
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:1466521
    • 提供者:Rex Yan
  1. DCODEANDENCODE

    0下载:
  2. 字符串加密解密!算法很简单!抛砖引玉之用!请不要扔板砖!-string encryption and decryption. Algorithm is very simple! Congregate use! Please do not throw floor tiling!
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:41255
    • 提供者:刘海风
  1. AEScode11

    0下载:
  2. AES 是一种使用安全码进行信息加密的标准。 它支持 128 位、192 位和 256 位长度的密匙。 加密算法的实现在 ElAES.pas 单元中。 本人将其加密方法封装在 AES.pas 单元中, 只需要调用两个标准函数就可以完成字符串的加密和解密。-AES is a safety code for the use of information encryption standards. It supports 128, 192 and 256 length of th
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:203449
    • 提供者:唐伯虎
  1. 10_md5

    0下载:
  2. MD5将任意长度的“字节串”变换成一个128bit的大整数,并且它是一个不可逆的字符串变换算法-MD5 arbitrary length of the "byte string" transform into a 128bit large integers, and it is an irreversible string algorithm
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:57056
    • 提供者:fasf
  1. md5_correct

    0下载:
  2. 修正了原CMd5类的CaculateStr函数的严重错误,并且转到新的C++类库。此类已经经过验证,文件和字符串均能得到正确结果,支持Unicode(Unicode时不需要转换)-amendment of the original CMd5 CaculateStr function of the type of serious errors and to the new C Class. Such has been validated, documents, and the string to
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:4482
    • 提供者:xb
  1. encryptdll3.6.1

    6下载:
  2. 《共享软件加密算法库》专业版是一款针对个人、企业开发共享软件的加密工具,支持Windows平台下各类开发工具: VC、VB、BCB、Delphi、PB、VFP、C#、ASP等,算法库中包含了获取计算机硬盘物理序列号、主板序列号功能及多种高强度对称、非对称算法。获取的硬盘序列号不随硬盘分区及格式化改变,支持IDE、SCSI接口硬盘,获取主板序列号的功能支持各类BIOS芯片,这两个功能可方便的用来实现一机一码的注册方式。算法库集成的算法有:BlowFish,MD5,Secret16,AES、SHA、
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:380688
    • 提供者:yangrui
  1. guandaotongxin

    0下载:
  2. 1、 了解系统调用pipe()的功能和实际原理 2、 编写一段程序,使用管道实现父子进程之间的通信 a) 使用系统调用fork()创建一个子进程 b) 子进程调用函数write()向父进程发送自己的进程ID和字符串” s sending a message to parent.\\n”。 c) 父进程调用函数read()通过管道读出子进程发来的消息,将消息输出屏幕,然后终止 -1, the understanding of the system call pipe () fu
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:4476
    • 提供者:witkey_eagle
  1. fork_textcanjian

    0下载:
  2. 1、 了解系统调用fork()、execl()、exit()、getpid()和waitpid()的功能和实现过程 2、 编写一段程序实现以下功能: a) 使用系统调用fork()创建两个子进程 b) 父进程重复显示字符串”parent:”,并使用函数getpid()显示自己的进程ID。 c) 两个子进程分别重复显示字符串”child:”,并使用函数getpid()显示自己的进程ID 3、 编写一段程序实现以下功能: a) 使用系统调用fork()创建一个子进程 b)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:8212
    • 提供者:witkey_eagle
  1. RandomCFSEncode

    0下载:
  2. 使用CFS编码来随机生成字符串的工具,可以作为简易的加解密工具-use CFS coding to the randomly generated string instrument can be used as simple encryption tool
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:1752
    • 提供者:王立坚
  1. md5_my

    0下载:
  2. md5的java源码......功能很简单,输入任意长的字符串,按\"生成信息摘要\"按钮,就可以生产等长的信息摘要-md5 the java source function is very simple ... that the importation of arbitrarily long string, according to "produce information summary" button, can produce such long message dig
  3. 所属分类:弱点检测代码

    • 发布日期:2008-10-13
    • 文件大小:4301
    • 提供者:huang
  1. MD5-VB6

    0下载:
  2. MD5 验证工具,适合字符串,运行速度快,代码精简等特点-MD5 verification tools, for the string, run faster, code streamlining and other characteristics
  3. 所属分类:加密解密

    • 发布日期:2014-01-13
    • 文件大小:7787
    • 提供者:KAR
  1. base64All

    0下载:
  2. BASE64算法及相关介绍; 支持对文件进行编码和对字符串进行编码;-BASE64 algorithm and the related presentations; Support the document coding and encoding of the string;
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:4585
    • 提供者:wsq
  1. CreatePass2

    0下载:
  2. 由用户指定密码最大长度生成密码字典,用户可改变程序控制的密码最大长度限制(8位)和改变密码源字符串(用户要改变源码)-user-specified maximum length of passwords generated password dictionary, Users can change the password program control the largest length restriction (8), and change the source code strings
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:3487
    • 提供者:fuhongchao
  1. YeeTooMD5P

    0下载:
  2. YeeTooMD5是免费的,开源的,它是在GPL许可下发布的,所有人都可以免费的使用它,修改它,并将它再次发布。 能够快速的计算出任意长度的字符串及任意类型文件的MD5值,并且用户能方便的检验结果. 能够输入MD5值,计算MD5计算值的匹配结果;可以打开任意文件并计算其MD5值。 -YeeTooMD5 is free, revenue, which is permitted under the GPL Release, everyone can use it free, modify
  3. 所属分类:CA认证

    • 发布日期:2008-10-13
    • 文件大小:27935
    • 提供者:king
  1. secudemo

    0下载:
  2. 演示完整的对称、非对称、摘要算法。 参照提示:其中有屏幕的和弹出提示。用RSA加密字符串前16个字节 用MD5签名加密后的文件,并可用MD5检验文件是否被篡改过-complete demonstration of symmetric, asymmetric, the digest algorithm. Cross-reference : the screen and a pop-up prompt. Using RSA encryption string before 16 byte e
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:183842
    • 提供者:唐盛
« 1 2 3 4 56 7 8 9 10 ... 42 »
搜珍网 www.dssz.com