NAME

Net::Msmgr::User

SYNOPSIS

use Net::Msmgr::User;

my $user = Net::Msmgr::User->new(user => 'joeblow@msn.com',
                          password => 'password' );

print "Username is: ", $user->user;

DESCRIPTION

Net::Msmgr::User is the encapsulation object for a user/password pair.

CONSTRUCTOR

my $user = new Net::Msmgr::User ( user => ... );

 - or -

my $user = Net::Msmgr::User->new(user => .... );

Constructor parameters are:
user (mandatory)

Registered MSN email address.

password (mandatory)

Your password. This is never sent "in the clear"

INSTANCE METHODS

$user->crypto_passwd;

Returns the MD5 hex digest of the salt, which is assigned during the login authentication process and the user password.