搜索资源列表
mime
- BASE64编码/解码 处理的VC源代码-BASE64 encoding / decoding of the source code VC
chap5qps
- 1. 目录handrfc822包含处理rfc822信件结构的程序。2. 目录mail-attch包含发送带附件的email的程序。3. 目录mailchecker包含接收邮件的程序。4. 目录Mime包含编码(base64,quote-printable,Uuencode)解码的程序。5. 目录sendmail包含发送无附件的email的程序。6. 目录vbmail包含使用MAPI发送接收邮件的程序。-1. Contents include handling rfc822 handrfc822
openSmtp_source.01.11.0
- 一个很优秀的opensmtp源码 FUTURE: Move to custom List - RecipientList CRAM MD5 Authentication S/MIME support UUEncode support Allow Attachment Encoding to be chosen by user (base64/UUEncode/None) Add Progress Delegate PGP Support
PostMail
- 小巧精致的邮件发送程序,实现了Base64编码,mime格式合成,体积小,功能不弱
base64
- Base64是MIME邮件中常用的编码方式之一。它的主要思想是将输入的字符串或数据编码成只含有{ A - Z , a - z , 0 - 9 , + , / }这64个可打印字符的串,故称为“Base64”。 Base64编码的方法是,将输入数据流每次取6 bit,用此6 bit的值(0-63)作为索引去查表,输出相应字符。这样,每3个字节将编码为4个字符(3×8 → 4×6);不满4个字符的以 = 填充。
qp
- Quoted-Printable也是MIME邮件中常用的编码方式之一。同Base64一样,它也将输入的字符串或数据编码成全是ASCII码的可打印字符串。 Quoted-Printable编码的基本方法是:输入数据在33-60、62-126范围内的,直接输出;其它的需编码为“=”加两个字节的HEX码(大写)。为保证输出行不超过规定长度,可在行尾加“=\\r\\n”序列作为软回车。
MIME(Quoted-Printable & Base64) 编码解码程序
- MIME(Quoted-Printable & Base64) 编码解码程序-MIME (Quoted-Printable Base64) codec procedures
base640
- smtp,mime的base64编码算法,指定编码源文件名后,编码所得文件自动生成。其内容即为base64编码。支持二进制文件(可执行程序,图像)编码
mail
- 说明: 学习之余做的一个源码。 带有base64的编码和解码, 但是没有html格式的解码,发送邮件很成功,接收邮件有一点问题,接受到本机以后, 若邮件编码是txt的,能够正常显示,若是mime的编码,就直接显示源码。 收发均封装好了类 可以直接 继承使用!
MIME编码解码程序
- MIME(BASE64/QP) 编码/解码程序代码。 此代码是一个 BCB 的单元,非常简单,提供了四个函数, 要改成 Delphi 或其它 C/C++ 也很容易,有需要的自已改吧。此代码经过测试,结果正确。-MIME (BASE64/QP) encoding / decoding code. This code is a BCB module is very simple, providing four functions, to change Delphi or other C / C is
mime64b
- WHAT MIME64 IS: MIME64 is an encoding described in RFC1341 as MIME base64.Its purpose is to encode binary files into ASCII so that they may be passedthrough e-mail gates. In this regard, MIME64 is similar to UUENCODE.Although most binaries these days
MIME-Base64-3.07.tar
- RSS用插件 RSS用插件 -RSS with RSS plug-ins with plug-ins
mime64b
- 一个用于MIME base64编-解码的程序源代码,不错的。-A provision for the MIME base64- decode source code, not bad at all.
base64
- Base64是网络上最常见的用于传输8Bit字节代码的编码方式之一,大家可以查看RFC2045~RFC2049,上面有MIME的详细规范。本程序是c语言版的base64加密解密源码!-Base64 is the most common network for the transmission of byte code 8Bit encoding one of the ways everyone can see RFC2045 ~ RFC2049, detailed above, there is
Test
- MIME base64 简单的编解码,主要用于学习之用-A simple MIME base64 encoding and decoding.
base64
- The term Base64 refers to a specific MIME content transfer encoding. It is also used as a generic term for any similar encoding scheme that encodes binary data by treating it numerically and translating it into a base 64 representation.The buffer is
base64
- Base64是网络上最常见的用于传输8Bit字节代码的编码方式之一,大家可以查看RFC2045~RFC2049,上面有MIME的详细规范。-Base64 is the most common on the network for transmission 8Bit encoding of byte code, we can see RFC2045 ~ RFC2049, the above detailed specifications have MIME. Base64 encoding can
library
- Base64是网络上最常见的用于传输8Bit字节代码的编码方式之一,大家可以查看RFC2045~RFC2049,上面有MIME的详细规范。Base64编码可用于在HTTP环境下传递较长的标识信息。-Base64 is the most common on the network for transmission 8Bit encoding of byte code, we can see RFC2045 ~ RFC2049, the above detailed specifications h
Base64
- 本文对互联网上常用的MIME编码作了简单介绍,详细说明了Base64编码的原理和方法,并给出具体 实现的算法程序,最后讨论其在简单加密中的应用。-This commonly used on the Internet MIME encoding made a brief introduction, a detailed descr iption of the principles and methods of Base64 encoding, and gives concrete realiz
base64
- Base64是网络上最常见的用于传输8Bit字节码的编码方式之一,Base64就是一种基于64个可打印字符来表示二进制数据的方法。可查看RFC2045~RFC2049,上面有MIME的详细规范。 Base64编码是从二进制到字符的过程,可用于在HTTP环境下传递较长的标识信息。例如,在Java Persistence系统Hibernate中,就采用了Base64来将一个较长的唯一标识符(一般为128-bit的UUID)编码为一个字符串,用作HTTP表单和HTTP GET URL中的参数。在其他