curl is a command line tool for transferring files with URL syntax, supporting FTP, FTPS, TFTP, HTTP, HTTPS, SCP, SFTP, TELNET, DICT, FILE and LDAP. curl supports SSL certificates, HTTP POST, HTTP
... [More] PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, kerberos...), file transfer resume, proxy tunneling and a busload of other useful tricks. [Less]
Python wrapper around a small subset of the OpenSSL library. Includes: X509 Certificates, SSL Context objects, SSL Connection objects using Python sockets as transport layer.
InfinityCore is a fork off MaNGOS, focusing on stability and working features. It merges from various other projects, namely, TrinityCore and ScriptDev2. Please see the IC Constitution at the forums for further info.
>>> UNMANTAINED PROJECT <<<
QRm3WiFiThis is my first C++ and QT4 experiment! I have developed this application to learn a new language (C++ with QT4 support)
It's just a simple SSL authenticator
... [More] written for the University of Rome "Roma Tre" that provide a fast and not invasive system to authenticate yourself to use the WiFi infrastructure.
It's multi-platform: Linux, Windows and MacOS X
News[29/01/2008] Ready to download the new binary setup for Windows XP (32bit); this is the unoptimized version of qrm3wifi-1.2 because some people have crashes with the optimized binary. [27/01/2008] The development is suspended, cause exams :p [12/01/2008] I have found a solution for previous serious problem with Multicast UDP sockets. Now, the Intranet Chat development is restarted! A Special thanks to QtCenter friends! [05/01/2008] The Intranet Chat development is suspended because QT-4 don't offers supports for Multicast udp sockets... I'm waiting for this features. [05/01/2008] Intranet Chat under heavy development. [15/12/2007] The version 1.2 include a simple Feed RSS 2.0 Italian Homepagehttp://www.capponcino.it/qrm3wifi [Less]
Project aims to provide neko applications with openssl library functionality.
Currently it mainly focuses on SSL communication and a very small subset of encryption functions.
libnzbfetch is a cross platform c library to download files from usenet using a nzb file. The focus is to make it as efficient as possible. At this point it uses around 5 a 6% cpu (Core 2 duo 2.16)
... [More] while downloading with +/- 13mbit.
It currently supports multiple servers with different priorities and SSL connections.
It is still in early development, to try it out use:
svn co http://libnzbfetch.googlecode.com/svn/trunk libnzbfetch
cd libnzbfetch
sh autogen.sh
./configure --with-expat=
makeAn example client can be found in the example/ directory Python bindings to the library can be found in the bindings/python directory. An example of a python client can be found here
Example:
#include
#include
#include
#include
#include
#import
int main(int argc, char **argv)
{
nzb_fetch *fetcher;
nzb_file *nzb_file;
nzb_file_info **files;
int num_files;
int i;
if (argc < 4)
{
printf("Usage: \n");
printf("%s \n",
argv[0]);
exit(1);
}
fetcher = nzb_fetch_init();
nzb_fetch_add_server(fetcher, argv[2], 119,
argv[3], argv[4], 2, 0);
nzb_fetch_connect(fetcher);
nzb_file = nzb_fetch_parse( argv[1]);
nzb_fetch_storage_path(nzb_file, strdup("tmp/complete/"));
nzb_fetch_temporary_path(nzb_file, strdup("tmp/chunks/"));
num_files = nzb_fetch_list_files(nzb_file, &files);
for (i = 0; i < num_files; i++)
{
printf("Adding %s to the queue\n", files[i]->filename);
nzb_fetch_download(fetcher, files[i]);
}
while(1)
{
sleep(1);
printf(".\n");
}
return 0;
} [Less]
I had been looking over the internet and didn't find a single free implementation for POP3 using SSL written for use with .NET applications. All of them were either sharewares or were commercial
... [More] libraries. The only free library I found was OpenPOP. Now this library does all the fancy stuff like breaking your email into headers and body and stuff and also download attachments, however, it misses the point at one stage: SSL.
So I decided to write my own library for POP3 using SSL and I decided that my library should do ONLY SSL, cause that is where my library stands apart from the commercial tools. :) It is still primitive and does not do the fancy stuff like OpenPOP but it works.
Please use the following path for checkout of source instead of the one mentioned in Downloads section:
http://pop3ssl.googlecode.com/svn/trunk/pop3SSL for dll source
http://pop3ssl.googlecode.com/svn/trunk/pop3SSLTest for test solution [Less]