Location:
Search - base64.l
Search list
Description: Base64 demonstrates how easy it is to decipher
plaintext usernames and passwords. Never login to a public network resource
unless some type of encryption is being used, secure socket layer is one example.
Most FTP sites also use plaintext passwords.-Base64 demonstrates how easy it is to decip her plaintext usernames and passwords. Never l ogin to a public network resource unless some ty pe of encryption is being used. secure socket layer is one example. Most FTP sit es also use plaintext passwords.
Platform: |
Size: 611832 |
Author: gogo |
Hits:
Description: The UCL common multimedia library implements a number of algorithms and protocols needed by a number of our applications. It compiles standalone on a range of Unix systems (Solaris, Linux, Irix, FreeBSD, MacOSX) and on Windows 95/98/NT/XP.
The following protocols/algorithms are included in the library:
Base64 encoding/decoding
Binary tree
Random number
HMAC authentication
MD5
DES
RTP
MBus
SAP
SDP
-common multimedia library impleme nts a number of algorithms and protocols needed by a number of our applications. It compiles sta ndalone on a range of Unix systems (Solaris, Linux, Irix, FreeBSD, MacOSX) and on Windows 95/98/NT/XP. The follow ing protocols / algorithms are included in the l ibrary : Base64 encoding / decoding n Random Binary tree umber HMAC MD5 authentication DES RTP MBus SAP S DP
Platform: |
Size: 247163 |
Author: 宫圣喜 |
Hits:
Description: Base64 demonstrates how easy it is to decipher
plaintext usernames and passwords. Never login to a public network resource
unless some type of encryption is being used, secure socket layer is one example.
Most FTP sites also use plaintext passwords.-Base64 demonstrates how easy it is to decip her plaintext usernames and passwords. Never l ogin to a public network resource unless some ty pe of encryption is being used. secure socket layer is one example. Most FTP sit es also use plaintext passwords.
Platform: |
Size: 611328 |
Author: gogo |
Hits:
Description: 几百种加密算法库,包括rsa,base64等等。-Hundreds of encryption algorithms library
Platform: |
Size: 692224 |
Author: 王斌 |
Hits:
Description: 通过gsoap实现高效MTOM协议的数据传输,适合linux操作系统(包括嵌入式linux)下通过MTOM协议实现XML数据包及二进制数据同时传输的应用场景,比普通soap+base64方式发送数据更加高效。
调试mtom经验:
这次调试的一点经验供参考:
1)可以根据附件的yoyo.h文件生成代码,参考以下命令:
soapcpp2 -L -C -I/home/dongruijie/workspace/gsoap-2.8/gsoap/import yoyo.h
2)最好显式设置一下命名空间,客户端代码:
struct soap *soap = soap_new1(SOAP_ENC_MTOM)
soap_set_namespaces(soap, namespaces) //namespaces定义在.nsmap中,直接调用即可
运行Demo例子时:
1)修改mtom_client.cpp中的服务端URL
2)编译
make cl
make
3)运行
./mtom_client-By gsoap MTOM efficient data transmission protocol for linux operating systems (including embedded linux) By implementing XML and binary data packets transmitted simultaneously through MTOM protocol scenarios than ordinary soap+ base64 way to send data more efficiently.
Commissioning mtom Experience:
The commissioning of a little experience for reference:
1) You can generate code based on attachment yoyo.h file, refer to the following command:
soapcpp2-L-C-I/home/dongruijie/workspace/gsoap-2.8/gsoap/import yoyo.h
2) The best look explicitly set the namespace, the client code:
struct soap* soap = soap_new1 (SOAP_ENC_MTOM)
soap_set_namespaces (soap, namespaces) // namespaces defined in .nsmap, a direct call to
When running Demo examples:
1) Modify the server URL mtom_client.cpp
2) compilation
make cl
make
3)
Platform: |
Size: 524288 |
Author: kevin |
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: