Dariush Debian Diary

About

Diariusz Dariusza

index | rss1.0

Categories

Archives

Valid XHTML 1.1 | Valid CSS
powered by blosxom.

2005-03-30

Crypt::MatrixSSL Matrix::SSL

apt-cache show libmatrixssl1.2
Package: libmatrixssl1.2
Priority: optional
Section: libs
Installed-Size: 96
Maintainer: Gerrit Pape 
Architecture: i386
Source: matrixssl
Version: 1.2.4-2
Depends: libc6 (>= 2.3.2.ds1-4)
Filename: pool/main/m/matrixssl/libmatrixssl1.2_1.2.4-2_i386.deb
Size: 39640
MD5sum: 13dc856bf8ab9cf889d8825ab3a120b1
Description: small SSL library optimized for embedded systems
 MatrixSSL is an embedded SSL implementation designed for small footprint
 devices and applications requiring low overhead per connection.  The
 library is less than 50K on disk with cipher suites.  It includes SSLv3
 server support, session resumption, and implementations of RSA, 3DES,
 ARC4, SHA1, and MD5.  The source is well documented and contains
 portability layers for additional operating systems, cipher suites, and
 crypto providers.
 .
 See http://www.matrixssl.org/ for more information.

2005-03-17

1111011310.....

#!/usr/bin/perl

use strict;

use Gtk2 -init;
use Glib qw(TRUE FALSE);

my $window = Gtk2::Window->new;
$window->signal_connect(delete_event => sub { Gtk2->main_quit; });

my $label = Gtk2::Label->new('' . time());
my $font = Gtk2::Pango::FontDescription->from_string("Sans Bold 48");
$label->modify_font($font);

Glib::Timeout->add(250, sub { $label->set_text('' . time()); TRUE; });

$window->add($label);

$window->show_all;

Gtk2->main;

use DBM::Deep

  use DBM::Deep;
	my $db = new DBM::Deep "foo.db";

	$db->{key} = 'value'; # tie() style
	print $db->{key};

	$db->put('key', 'value'); # OO style
	print $db->get('key');

	# true multi-level support
	$db->{my_complex} = [
	'hello', { perl => 'rules' }, 
42, 99 ];

DESCRIPTION

A unique flat-file database module, written in pure perl. True multi-level hash/array support (unlike MLDBM, which is faked), hybrid OO / tie() interface, cross-platform FTPable files, and quite fast. Can handle millions of keys and unlimited hash levels without significant slow-down. Written from the ground-up in pure perl -- this is NOT a wrapper around a C-based DBM. Out-of-the-box compatibility with Unix, Mac OS X and Windows.

2005-03-14

-Mre=debug

perl -Mre=debug -e "/just|another|perl|hacker/"

2005-03-08

Net::Lite::FTP - tls-enabled ftp client library for perl.

NAME
       Net::Lite::FTP - Perl FTP client

SYNOPSIS
              use Net::Lite::FTP;
	      my $tlsftp=Net::Lite::FTP->new();
	      $tlsftp->open("ftp.tls.pl","21");
	      $tlsftp->user("user");
	      $tlsftp->pass("password");
	      $tlsftp->cwd("pub"); 
	      my $files=$tlsftp->nlst("*.exe");
	      foreach $f (@files) {
	      	$tlsftp->get($f); 
	      };

DESCRIPTION
	Very simple FTP client with support for TLS

See more ...