搜索资源列表
TestBase64
- Base64内容传送编码(VC++实现):常用于电子邮件的数据传输中-Base64 content transfer encoding (VC++ to achieve): commonly used in e-mail data transmission
Bas64_EnCode
- Base64 加密算法(Author 蒋柏良 Jerry Jiang)-* * DEscr iptION * Base64 processes input in 24bit chunks by converting each chunk into 4 * bytes of output. It does so by splitting input into four 6bit groups and * using these as indexes in the following
crypt
- // 命令行方式的文件加密和解密 //*** *** *** *** *** *** *** *** **** // How to use //**************************************************** /* The comand line is like this: command line: crypt [cpParams] [cpFile] [cpKey] arguments descr iptio
myebook
- Linux系统下的电子书源代码,支持多种编码(unicode,GBK,BIG5,UTF8),支持自定义跳转页码和自动阅读功能.-E-book under the Linux system source code, supports a wide range of encoding (unicode, GBK, BIG5, UTF8), support for custom page Jump and automatic function.
ReadB4
- 对不同的编码进行解析。对邮件传输的编码BASE64等编码的分析,还有邮件报文的分析-Code for different analysis. Transmission of messages encoded BASE64 encoding, such as analysis, as well as the analysis of e-mail message
Base64
- 本文档是Base64编码和解码的具体实现函数,有助于电子邮件等文档的解码。-This document is Base64 encoding and decoding to achieve the specific function, help to decode e-mail and other documents.
SuperBase64ED
- 这是一个手机编程和邮件编程常用到的一个编码技术函数,Base64编码和解码动态库,支持字符串和文件的编解码工作。速度很快稳定,我的一些程序中用,现在发布。-This is a cell phone programming and e-mail program into a coding techniques commonly used functions, Base64 encoding and decoding of dynamic libraries, and documentation t
hafumanshu
- (1) I:初始化,从终端读入n个字符和n个权值,建立哈夫曼树,并将它存放在文件HuffmanTree中. (2)E:编码.利用已建立好的哈夫曼树,对要传输的数据正文(存在文件ToBeTran.txt中)进行编码,将结果代码存(传输)到文件CodeFile中. (3)D:译码.利用已建好的哈夫曼树,对传输到达的CodeFile中的数据代码进行译码,将译码结果存入文件TestFile中. (4) P: 印文件.将文件CodeFile以紧凑格式显示在终端上,每行50个代码。同时将此字符形
nmsmtp
- 最近学习CBC6,尝试用NMSMTP编制了一个发送邮件工具,网上这方面资料较少。认证方面和附件发送方面的资料更少,经过反复试验成功实现了大附件发送,并非网上说的不能发送大附件。BASE64编码也是用的BCB自带的IDBASE64控件实现,不像网上有些文章还要自己实现BASE64编码.-Recent study CBC6, try NMSMTP developed a tool to send e-mail, web less information in this regard. Certifi
base64
- Base64是一種使用64基的位置計數法。它使用2的最大次方來代表僅可列印的ASCII 字元。這使它可用來作為電子郵件的傳輸編碼。在Base64中的變數使用字元A-Z、a-z和0-9 ,這樣共有62個字元,用來作為開始的64個數字,最後兩個用來作為數字的符號在不同的系統中而不同。一些如uuencode的其他編碼方法,和之後binhex的版本使用不同的64字符集來代表6個二進制數字,但是它們不叫Base64。-Base64 is a 64-base position count. It uses
Base64-3
- Base64是一种基于64个可打印字符来表示二进制数据的表示方法。由于2的6次方等于64,所以每6个位元为一个单元,对应某个可打印字符。三个字节有24个位元,对应于4个Base64单元,即3个字节需要用4个可打印字符来表示。它可用来作为电子邮件的传输编码。-Base64 is based on 64 printable characters to represent binary data representation. Since 2 ^ 6 equals 64, so every six b
SkAnimatorScript2
- These functions are locale dependent. The encoding argument identifies the encoding (e.g. ISO-8859-2 for Polish). -These functions are locale dependent. The encoding argument identifies the encoding (e.g. ISO-8859-2 for Polish).
RSA
- 利用C\C++实现RSA算法的加、解密运算。 具体包括: 1)利用扩展的Euclid计算 a mod n 的乘法逆元; 2)Miller-Rabin素性测试算法对一个给定的大数进行测试; 3)实现的运算,并计算; 4)利用Euler定理手工计算,并与3)计算的结果对比; 5)实现RSA算法。并对 I LOVE NANJING UNIVERSITY OF AERONAUTICS AND ASTRONAUTICS 加解密。说明:为了方便实现,分组可以小一点,比如两个字母一组。