Location:
Search - encode base64
Search list
Description: base64 encode source
Platform: |
Size: 2151 |
Author: 第三方 |
Hits:
Description: 纯c语言写的
url encode, url decode,
base64 encode, base64 decode
完全集成在一个程序里面了。无论是调用还是移植都很方便。-pure language to write the url encode and decode url, base64 encode and decode base64 in a fully integrated into the inside. Whether or transplantation was called very convenient.
Platform: |
Size: 18719 |
Author: serverclient2004 |
Hits:
Description: 编码、解码工具类。Utility class to do Base64 decoding,encoding
Platform: |
Size: 4879 |
Author: 张齐 |
Hits:
Description: 几和经典的加密方法有md5,base64,crc,des等几和经典的加密方法有md5,base64,crc,des等
Platform: |
Size: 691165 |
Author: a |
Hits:
Description: 用c語言寫的URL encoding還有base64 encoding
Platform: |
Size: 3790 |
Author: 何德威 |
Hits:
Description: 一个用ATL开发的Base64编码控件,使用简单,用EnCode64(str)编码,EnCode64(str)解码,属性EnCode存放源码,属性DeCode存放Base64码,开发平台:VC.Net- The Base64 code which develops with ATL controls, the use is
simple, (str) codes with EnCode64, EnCode64 (str) decodes, the
attribute EnCode depositing source code, attribute DeCode deposits the
Base64 code, develops the platform: VC.Net
Platform: |
Size: 43008 |
Author: 周磊 |
Hits:
Description: Base64的Decode和Encode-Encode and Decode
Platform: |
Size: 4096 |
Author: 元木 |
Hits:
Description: base64 encode source
Platform: |
Size: 2048 |
Author: |
Hits:
Description: 纯c语言写的
url encode, url decode,
base64 encode, base64 decode
完全集成在一个程序里面了。无论是调用还是移植都很方便。-pure language to write the url encode and decode url, base64 encode and decode base64 in a fully integrated into the inside. Whether or transplantation was called very convenient.
Platform: |
Size: 18432 |
Author: serverclient2004 |
Hits:
Description: 编码、解码工具类。Utility class to do Base64 decoding,encoding-Encoding and decoding tools. Utility class to do Base64 decoding, encoding
Platform: |
Size: 5120 |
Author: 张齐 |
Hits:
Description: 几和经典的加密方法有md5,base64,crc,des等几和经典的加密方法有md5,base64,crc,des等-Few and classical encryption methods are md5, base64, crc, des, such as a few classic encryption methods are md5, base64, crc, des, etc.
Platform: |
Size: 691200 |
Author: JOE |
Hits:
Description: 使用DELPHI实现的 base64 加解密的算法代码,速度较快-DELPHI achieved using base64 algorithm for encryption and decryption code, faster
Platform: |
Size: 169984 |
Author: lxmh815 |
Hits:
Description: /** A simple base64 encoding and decoding utility class
* it can also encode and decode non ASII characters such as
* Chinese
*/
/**
* This software is provided "AS IS," without a warranty of any kind.
* anyone can use it for free,emails are welcomed concerning bugs or
* suggestions.
*/-/** A simple base64 encoding and decoding utility class
* it can also encode and decode non ASII characters such as
* Chinese
*/
/**
* This software is provided "AS IS," without a warranty of any kind.
* anyone can use it for free,emails are welcomed concerning bugs or
* suggestions.
*/
Platform: |
Size: 2048 |
Author: tulip |
Hits:
Description: BASE 64编码程序...代码很小...
-Little amount of code,BASE 64 Encode and DEcode,support blank and chinese byte etc...
Platform: |
Size: 2048 |
Author: votasee |
Hits:
Description: Encode/Decode Base64
Platform: |
Size: 1024 |
Author: pitfiend |
Hits:
Description: Encode and decode in Base 64 with C#
Platform: |
Size: 1024 |
Author: Ricardo |
Hits:
Description: base64編碼,vbs版本,還有個 java版本,可直接在作業系統上雙擊運行-base64 encoding, vbs version, there is a java version, can be directly run double in the operating system
Platform: |
Size: 2048 |
Author: wenxin |
Hits:
Description: Base64編碼的加密與解密
特點:支援中文字-Base64 encryption and decryption
Platform: |
Size: 3072 |
Author: Inndy |
Hits:
Description: javascript 的base64 编码方案(javascript base64 encode for web development)
Platform: |
Size: 36864 |
Author: wangz
|
Hits:
Description: public static String encode(byte[] binaryData) {
if (binaryData == null) {
return null;
}
int lengthDataBits = binaryData.length * EIGHTBIT;
if (lengthDataBits == 0) {
return "";
}
int fewerThan24bits = lengthDataBits % TWENTYFOURBITGROUP;
int numberTriplets = lengthDataBits / TWENTYFOURBITGROUP;
int numberQuartet = fewerThan24bits != 0 ? numberTriplets + 1 : numberTriplets;
char encodedData[] = null;
encodedData = new char[numberQuartet * 4];
byte k = 0, l = 0, b1 = 0, b2 = 0, b3 = 0;
int encodedIndex = 0;
int dataIndex = 0;
if (fDebug) {
System.out.println("number of triplets = " + numberTriplets);
}
Platform: |
Size: 2048 |
Author: 少郎 |
Hits: