gmac rfc
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 213
rfc2mib
rfc2mib is a script that extracts MIB/PIB/ASN.1 modules from an RFC document. more>>
This Tcl script may be used to extract MIB, PIB and ASN.1 modules from an RFC document.
Unlike most extractors, this script is smart enough to recognize ASN.1-style comments prior to or within the module header, use of the "TagDefaults" part of the module header (not used by MIB modules), module headers that are broken across multiple lines, and macros.
<<lessUnlike most extractors, this script is smart enough to recognize ASN.1-style comments prior to or within the module header, use of the "TagDefaults" part of the module header (not used by MIB modules), module headers that are broken across multiple lines, and macros.
Download (0.003MB)
Added: 2005-04-13 License: BSD License Price:
1661 downloads
SAPRFC 1.4.1
SAPRFC is a extension module for PHP 4 and PHP 5. more>>
SAPRFC is a extension module for PHP 4 and PHP 5. SAPRFC can call ABAP function modules in SAP R/3 from PHP scripts.
You can use the powerful PHP language to create a web applications or interface programs with a connectivity to the SAP R/3.
You can also write RFC server program in PHP and call PHP functions from SAP R/3.
Main features:
- Non-Unicode SAP R/3 release above 4.0B supported (it may be work for earlier versions but it hasnt been tested)
- use RFC (Remote Function Call) API to make call
- discover interface of a function module
- map RFC types to PHP strings
- server API for calling PHP functions from ABAP
- support for transactional RFC (client and server)
- portability: except ZEND API and RFC API use only a few standard C functions
- delivered with the test script saprfc_test.php that has the similar function as "Single Test" option in SE37 transaction (Function Builder).
<<lessYou can use the powerful PHP language to create a web applications or interface programs with a connectivity to the SAP R/3.
You can also write RFC server program in PHP and call PHP functions from SAP R/3.
Main features:
- Non-Unicode SAP R/3 release above 4.0B supported (it may be work for earlier versions but it hasnt been tested)
- use RFC (Remote Function Call) API to make call
- discover interface of a function module
- map RFC types to PHP strings
- server API for calling PHP functions from ABAP
- support for transactional RFC (client and server)
- portability: except ZEND API and RFC API use only a few standard C functions
- delivered with the test script saprfc_test.php that has the similar function as "Single Test" option in SE37 transaction (Function Builder).
Download (0.074MB)
Added: 2005-12-23 License: The PHP License Price:
1411 downloads
SAP::Rfc 1.55
SAP::Rfc is a Perl module that contains RFC Function calls against an SAP R/3 System. more>>
SAP::Rfc is a Perl module that contains RFC Function calls against an SAP R/3 System.
SYNOPSIS
# WARNING - as of SAP::Rfc 1.40 USER and PASSWD are case sensitive ready for
# R3 7.x
use SAP::Rfc;
$rfc = new SAP::Rfc(
ASHOST => myhost,
USER => ME,
PASSWD => secret,
LANG => EN,
CLIENT => 200,
SYSNR => 00,
TRACE => 1 );
my $it = $rfc->discover("RFC_READ_TABLE");
$it->QUERY_TABLE(TRDIR);
$it->ROWCOUNT( 2000 );
$it->OPTIONS( ["NAME LIKE RS%"] );
# or pass a list of hash refs like so:
$it->OPTIONS( [ { TEXT => "NAME LIKE RS%" } ] );
$rfc->callrfc( $it );
print "NO. PROGS: ".$it->tab(DATA)->rowCount()." n";
print join("n",( $it->DATA ));
$rfc->close();
SAP::Rfc - is a Perl extension for performing RFC Function calls against an SAP R/3 System. Please refer to the README file found with this distribution. This Distribution also allows the creation of registered RFCs so that an SAP system can call arbitrary Perl code created in assigned callbacks.
The best way to describe this package is to give a brief over view, and then launch into several examples. The SAP::Rfc package works in concert with several other packages that also come with same distribution, these are SAP::Iface, SAP::Parm, SAP::Tab, and SAP::Struc. These come together to give you an object oriented programming interface to performing RFC function calls to SAP from a UNIX based platform with your favourite programming language - Perl. A SAP::Rfc object holds together one ( and only one ) connection to an SAP system at a time. The SAP::Rfc object can hold one or many SAP::Iface objects, each of which equate to the definition of an RFC Function in SAP ( trans SE37 ). Each SAP::Iface object holds one or many SAP::Parm, and/or SAP::Tab objects, corresponding to the RFC Interface definition in SAP ( SE37 ).
For all SAP::Tab objects, and for complex SAP::Parm objects, a SAP::Struc object can be defined. This equates to a structure definition in the data dictionary ( SE11 ). Because the manual definition of interfaces and structures is a boring and tiresome exercise, there are specific methods provided to automatically discover, and add the appropriate interface definitions for an RFC Function module to the SAP::Rfc object ( see methods discover, and structure of SAP::Rfc ).
Please note that USER and PASSWD are now case sensitive - this change has the potential to break backward compatibility.
<<lessSYNOPSIS
# WARNING - as of SAP::Rfc 1.40 USER and PASSWD are case sensitive ready for
# R3 7.x
use SAP::Rfc;
$rfc = new SAP::Rfc(
ASHOST => myhost,
USER => ME,
PASSWD => secret,
LANG => EN,
CLIENT => 200,
SYSNR => 00,
TRACE => 1 );
my $it = $rfc->discover("RFC_READ_TABLE");
$it->QUERY_TABLE(TRDIR);
$it->ROWCOUNT( 2000 );
$it->OPTIONS( ["NAME LIKE RS%"] );
# or pass a list of hash refs like so:
$it->OPTIONS( [ { TEXT => "NAME LIKE RS%" } ] );
$rfc->callrfc( $it );
print "NO. PROGS: ".$it->tab(DATA)->rowCount()." n";
print join("n",( $it->DATA ));
$rfc->close();
SAP::Rfc - is a Perl extension for performing RFC Function calls against an SAP R/3 System. Please refer to the README file found with this distribution. This Distribution also allows the creation of registered RFCs so that an SAP system can call arbitrary Perl code created in assigned callbacks.
The best way to describe this package is to give a brief over view, and then launch into several examples. The SAP::Rfc package works in concert with several other packages that also come with same distribution, these are SAP::Iface, SAP::Parm, SAP::Tab, and SAP::Struc. These come together to give you an object oriented programming interface to performing RFC function calls to SAP from a UNIX based platform with your favourite programming language - Perl. A SAP::Rfc object holds together one ( and only one ) connection to an SAP system at a time. The SAP::Rfc object can hold one or many SAP::Iface objects, each of which equate to the definition of an RFC Function in SAP ( trans SE37 ). Each SAP::Iface object holds one or many SAP::Parm, and/or SAP::Tab objects, corresponding to the RFC Interface definition in SAP ( SE37 ).
For all SAP::Tab objects, and for complex SAP::Parm objects, a SAP::Struc object can be defined. This equates to a structure definition in the data dictionary ( SE11 ). Because the manual definition of interfaces and structures is a boring and tiresome exercise, there are specific methods provided to automatically discover, and add the appropriate interface definitions for an RFC Function module to the SAP::Rfc object ( see methods discover, and structure of SAP::Rfc ).
Please note that USER and PASSWD are now case sensitive - this change has the potential to break backward compatibility.
Download (0.070MB)
Added: 2007-05-24 License: Perl Artistic License Price:
919 downloads
MiaouIRC 0.89
MiaouIRC is an RFC 1459-compatible IRC client written in Java/Swing. more>>
MiaouIRC is an RFC 1459-compatible IRC client written in Java/Swing. It has some useful features like choosing your Look n Feel, customizing your nick friend list, highly verbose logging, searching a keyword in a channel, private message panels, etc.
It supports multi-server connections, DCC CHAT, SEND, ACCEPT and RESUME, CTCP commands, nick autocompletions, mIRC colors, autoreconnects, and autojoins. A DCC queue list is available to tracing your leeching activities with IRC FServ.
MiaouIRC is still a simple use Java application, but, with many features which are proper to, like :
- The possibility for choosing the Look And Feel
- DCC SEND, CHAT and OFFER with a DCC queue monitoring. Very useful for an intensive use on "DCCing" with FServ IRC Bot !
- MiaouIRC is also multi-server
- A logging system is available too, so you can trace all interactions between this program client and the IRC server, log by channel or by private message.
- Multiple configurations management, easy to load from one to another.
Configuration saves are only memorized on files, never on registers basis, in a Windows system type.
<<lessIt supports multi-server connections, DCC CHAT, SEND, ACCEPT and RESUME, CTCP commands, nick autocompletions, mIRC colors, autoreconnects, and autojoins. A DCC queue list is available to tracing your leeching activities with IRC FServ.
MiaouIRC is still a simple use Java application, but, with many features which are proper to, like :
- The possibility for choosing the Look And Feel
- DCC SEND, CHAT and OFFER with a DCC queue monitoring. Very useful for an intensive use on "DCCing" with FServ IRC Bot !
- MiaouIRC is also multi-server
- A logging system is available too, so you can trace all interactions between this program client and the IRC server, log by channel or by private message.
- Multiple configurations management, easy to load from one to another.
Configuration saves are only memorized on files, never on registers basis, in a Windows system type.
Download (2.9MB)
Added: 2005-11-22 License: GPL (GNU General Public License) Price:
1431 downloads
RFC 3.3.0
RFC (Remote Filesystem Checker) is a set of scripts that aims to help System-Administrators. more>>
RFC (Remote Filesystem Checker) is a set of scripts that aims to help System-Administrators run a filesystem-checker (like tripwire, aide and so on...) from a "master-node" to several "slave-nodes" using ssh, scp, sudo and few other common shell commands.
Main features:
- crate/update FileSystem-Checkers (FSC) database
- execute FSC and create a log-report
- allow parallel execution, mass-check and mass-upgrade!
- support non-interactive operations
- use scp/ssh for all connections
- use an arbitrary port for ssh/scp connections (may be different for each host!)
- send (ONE) email to administrator(s)
- rotate logs, databases and other files
- support for AFICK, AIDE and INTEGRIT FileSystem-Checkers
- check users creation/removal
- check group creation/removal
- check if someone changes UID, GID or shell
- check for groups members or ID changes
- check for SUID/SGID on remote host via a separate PERL script
- check if remote-host is up before run checks on it (via nmap)
- kill the processes that take too long (you can set an arbitrary timeout value)
<<lessMain features:
- crate/update FileSystem-Checkers (FSC) database
- execute FSC and create a log-report
- allow parallel execution, mass-check and mass-upgrade!
- support non-interactive operations
- use scp/ssh for all connections
- use an arbitrary port for ssh/scp connections (may be different for each host!)
- send (ONE) email to administrator(s)
- rotate logs, databases and other files
- support for AFICK, AIDE and INTEGRIT FileSystem-Checkers
- check users creation/removal
- check group creation/removal
- check if someone changes UID, GID or shell
- check for groups members or ID changes
- check for SUID/SGID on remote host via a separate PERL script
- check if remote-host is up before run checks on it (via nmap)
- kill the processes that take too long (you can set an arbitrary timeout value)
Download (2.79MB)
Added: 2005-11-18 License: GPL (GNU General Public License) Price:
1439 downloads
SmartIrc4net 0.4.0
SmartIrc4net in an IRC library for C#/.NET. more>>
SmartIrc4net project is a C# class for communication with IRC networks, which conforms to the RFC 2812 (IRC Protocol). Its orignally a port of SmartIRC (written in PHP), but its much more now (I will backport it to PHP5 some day). SmartIrc4net an API that handles all IRC protocol messages and is designed for creating IRC bots or even GUI clients.
Main features:
- 3 layered API:
- IrcConnection (low-level API) contains socket handling and message buffer
- IrcCommands (extends IrcConnection, middle-level API) contains RFC IRC commands plus easy to use IRC methods (like Op/Deop/Ban/Unban...)
- IrcClient (extends IrcCommands, high-level API) full featured IRC class, with channel syncing, fully event driven
- send/receive floodprotection
- detects and changes nickname on nickname collisions
- autoreconnect, if connection is lost
- autoretry for connecting to IRC servers
- debugging/logging system with log levels (using log4net)
- compatible with Mono and Micrsoft .NET Framework
- sendbuffer with a queue that has 3 priority levels (high, medium, low) plus a bypass level (critical)
- channel syncing (tracking of users/modes/topic etc in objects)
- user syncing (tracking the user in channels, nick/ident/host/realname/server/hopcount in objects)
- when channel syncing is acticated the following methods are available:
- IsJoined
- IsOpped
- IsVoiced
- IsBanned
- on reconnect all joined channels will be rejoined, also when keys are used
- own CTCP version reply can be set
Enhancements:
- This release contains crash fixes in the CTCP PING handling code, non-RFC support mode, channel mode parser, and connection handling.
- It also includes an active pinger, which detects network problems much better, as TCP sockets can stall for days or weeks before the error is detected.
- This is the first release that has support for UTF-8.
- The API documentation was extended.
- The login method accepts a list of nicknames, automatically uses the next nickname if a nickname collision happens, and uses part of the nickname plus a random number as a fallback.
<<lessMain features:
- 3 layered API:
- IrcConnection (low-level API) contains socket handling and message buffer
- IrcCommands (extends IrcConnection, middle-level API) contains RFC IRC commands plus easy to use IRC methods (like Op/Deop/Ban/Unban...)
- IrcClient (extends IrcCommands, high-level API) full featured IRC class, with channel syncing, fully event driven
- send/receive floodprotection
- detects and changes nickname on nickname collisions
- autoreconnect, if connection is lost
- autoretry for connecting to IRC servers
- debugging/logging system with log levels (using log4net)
- compatible with Mono and Micrsoft .NET Framework
- sendbuffer with a queue that has 3 priority levels (high, medium, low) plus a bypass level (critical)
- channel syncing (tracking of users/modes/topic etc in objects)
- user syncing (tracking the user in channels, nick/ident/host/realname/server/hopcount in objects)
- when channel syncing is acticated the following methods are available:
- IsJoined
- IsOpped
- IsVoiced
- IsBanned
- on reconnect all joined channels will be rejoined, also when keys are used
- own CTCP version reply can be set
Enhancements:
- This release contains crash fixes in the CTCP PING handling code, non-RFC support mode, channel mode parser, and connection handling.
- It also includes an active pinger, which detects network problems much better, as TCP sockets can stall for days or weeks before the error is detected.
- This is the first release that has support for UTF-8.
- The API documentation was extended.
- The login method accepts a list of nicknames, automatically uses the next nickname if a nickname collision happens, and uses part of the nickname plus a random number as a fallback.
Download (0.43MB)
Added: 2007-04-07 License: GPL (GNU General Public License) Price:
931 downloads
babel-ircd 1.1
babel-ircd is a small IRC server aimed for small communities. more>>
babel-ircd is a small IRC server aimed for small communities. It supports a subset of RFC1459.
It extends the RFC by providing automatic encoding translation. The project only works in stand-alone on one server.
Exemple of lacks : modes (like operator)
new server command : /encoding
- /encoding iso-8859-1 set the encoding of the client to iso 8859-1. The server then convert all the message from and to this client to the right encoding. With this several clients can have different encoding and see their accents. All encoding provided by iconv are available
- /encoding list returns the list of supported encodings
- /encoding shows the current encoding
This software is under the GPLv2 License.
Enhancements:
- Tested with: xchat gaim ChatZilla Zircon KSirc LostIrc ircII BitchX tirc epic4 TinyIRC
<<lessIt extends the RFC by providing automatic encoding translation. The project only works in stand-alone on one server.
Exemple of lacks : modes (like operator)
new server command : /encoding
- /encoding iso-8859-1 set the encoding of the client to iso 8859-1. The server then convert all the message from and to this client to the right encoding. With this several clients can have different encoding and see their accents. All encoding provided by iconv are available
- /encoding list returns the list of supported encodings
- /encoding shows the current encoding
This software is under the GPLv2 License.
Enhancements:
- Tested with: xchat gaim ChatZilla Zircon KSirc LostIrc ircII BitchX tirc epic4 TinyIRC
Download (0.013MB)
Added: 2006-12-11 License: GPL (GNU General Public License) Price:
1048 downloads
pam_ccreds 0.1
pam_ccreds module provides the means for Linux workstations to locally authenticate using an enterprise identity. more>>
pam_ccreds is a PAM module that provides the means for Linux workstations to locally authenticate using an enterprise identity when the network is unavailable.
Used in conjunction with the nss_updatedb utility, it provides a mechanism for disconnected use of network directories.
They are designed to work with pam_ldap and nss_ldap, also available from PADL.
Main features:
- Uses the Pluggable Authentication Module API defined in OSF DCE RFC 86.0 (with Linux-PAM extensions)
- Supports any PAM authentication module
- Secure cached credentials provides for verification only
<<lessUsed in conjunction with the nss_updatedb utility, it provides a mechanism for disconnected use of network directories.
They are designed to work with pam_ldap and nss_ldap, also available from PADL.
Main features:
- Uses the Pluggable Authentication Module API defined in OSF DCE RFC 86.0 (with Linux-PAM extensions)
- Supports any PAM authentication module
- Secure cached credentials provides for verification only
Download (0.068MB)
Added: 2006-05-17 License: GPL (GNU General Public License) Price:
1255 downloads
libmhash 0.9.9
libmhash provides an easy to use C interface for several hashalgorithms. more>>
libmhash is a free library which provides a uniform interface to a large number of hash algorithms. These algorithms can be used to compute checksums, message digests, and other signatures.
The HMAC support implements the basics for message authentication, following RFC 2104. In the later versions some key generation algorithms, which use hash algorithms, have been added.
At the time of writing this, the library supports the algorithms:
SHA1, SHA160, SHA192, SHA224, SHA384, SHA512, HAVAL128, HAVAL160, HAVAL192, HAVAL224, HAVAL256, RIPEMD128, RIPEMD256, RIPEMD320, MD4, MD5, TIGER, TIGER128, TIGER160, ALDER32, CRC32, CRC32b, WHIRLPOOL, GOST, SNEFRU128, SNEFRU256.
Enhancements:
- A SIGBUS bug was fixed for unaligned data.
<<lessThe HMAC support implements the basics for message authentication, following RFC 2104. In the later versions some key generation algorithms, which use hash algorithms, have been added.
At the time of writing this, the library supports the algorithms:
SHA1, SHA160, SHA192, SHA224, SHA384, SHA512, HAVAL128, HAVAL160, HAVAL192, HAVAL224, HAVAL256, RIPEMD128, RIPEMD256, RIPEMD320, MD4, MD5, TIGER, TIGER128, TIGER160, ALDER32, CRC32, CRC32b, WHIRLPOOL, GOST, SNEFRU128, SNEFRU256.
Enhancements:
- A SIGBUS bug was fixed for unaligned data.
Download (0.83MB)
Added: 2007-04-05 License: LGPL (GNU Lesser General Public License) Price:
944 downloads
Data::ICal 0.11
Data::ICal is a Perl module that generates iCalendar (RFC 2445) calendar files. more>>
Data::ICal is a Perl module that generates iCalendar (RFC 2445) calendar files.
SYNOPSIS
use Data::ICal;
my $calendar = Data::ICal->new();
my $vtodo = Data::ICal::Entry::Todo->new();
$vtodo->add_properties(
# ... see Data::ICal::Entry::Todo documentation
);
# ... or
$calendar = Data::ICal->new(filename => foo.ics); # parse existing file
$calendar = Data::ICal->new(data => BEGIN:VCALENDAR...); # parse existing file
$calendar->add_entry($vtodo);
print $calendar->as_string;
# Or, if youre printing to something you want google to read:
print $calendar->as_string(fold => 0);
A Data::ICal object represents a VCALENDAR object as defined in the iCalendar protocol (RFC 2445, MIME type "text/calendar"), as implemented in many popular calendaring programs such as Apples iCal.
Each Data::ICal object is a collection of "entries", which are objects of a subclass of Data::ICal::Entry. The types of entries defined by iCalendar (which refers to them as "components") include events, to-do items, journal entries, free/busy time indicators, and time zone descriptors; in addition, events and to-do items can contain alarm entries. (Currently, Data::ICal only implements to-do items and events.)
Data::ICal is a subclass of Data::ICal::Entry; see its manpage for more methods applicable to Data::ICal.
<<lessSYNOPSIS
use Data::ICal;
my $calendar = Data::ICal->new();
my $vtodo = Data::ICal::Entry::Todo->new();
$vtodo->add_properties(
# ... see Data::ICal::Entry::Todo documentation
);
# ... or
$calendar = Data::ICal->new(filename => foo.ics); # parse existing file
$calendar = Data::ICal->new(data => BEGIN:VCALENDAR...); # parse existing file
$calendar->add_entry($vtodo);
print $calendar->as_string;
# Or, if youre printing to something you want google to read:
print $calendar->as_string(fold => 0);
A Data::ICal object represents a VCALENDAR object as defined in the iCalendar protocol (RFC 2445, MIME type "text/calendar"), as implemented in many popular calendaring programs such as Apples iCal.
Each Data::ICal object is a collection of "entries", which are objects of a subclass of Data::ICal::Entry. The types of entries defined by iCalendar (which refers to them as "components") include events, to-do items, journal entries, free/busy time indicators, and time zone descriptors; in addition, events and to-do items can contain alarm entries. (Currently, Data::ICal only implements to-do items and events.)
Data::ICal is a subclass of Data::ICal::Entry; see its manpage for more methods applicable to Data::ICal.
Download (0.10MB)
Added: 2006-12-01 License: Perl Artistic License Price:
1059 downloads
IMAPEngine 0.3b
IMAPEngine provides an IMAP server which retrieves via POP3 and organizes mail in a database. more>>
IMAPEngine provides an IMAP server which retrieves via POP3 and organizes mail in a database.
IMAPEngine is an IMAP server that uses a tdbengine database structure to store all accounts, messages, and mailboxes. This means it has nearly no limits in numbers, sizes, and performance, and it uses indexes to sort/find its data.
IMAPEngine is IMAP4Rev1 compatible and also has built-in support for the ACL, ID, IDLE, and UIDPLUS extensions. It is not (yet) an MTA, but it retrieves incoming messages from different POP3 servers. An simple integrated Web interface makes account configuration easy.
Enhancements:
- corrected imapfetch.mod
- included easyserver web server and developed index.mod for web based account configuration
- created imapconfig.mod for basic account setup on command line (better use the web frontend!)
- code cleanups, restructuring and some performance tweaking
- improved the table structure: bodies are stored as BLOB now. This raises the download performance significantly on big emails (more than ~2 MB)
- added the UIDPLUS extension as defined in RFC 2359. Mozilla Mail can handle it properly
- free client dependend flags now can be used (e.g. "Junk" sign of Mozilla Mail)
- the LIST and LSUB commands are now processed as defined in the IMAP4Rev1
- smaller semaphore scopes to each command that writes to the db, so table locks use only the minimum amount of time they need
- added the NAMESPACE extension as defined in RFC 2342
- added the ACL extension as defined in RFC 2086 (the commands are all implemented, but the rights are not yet mentioned by the server)
- added the IDLE extension as defined in RFC 2177 (though not sending any information when idle!)
- added the ID extension as defined in RFC 2971
<<lessIMAPEngine is an IMAP server that uses a tdbengine database structure to store all accounts, messages, and mailboxes. This means it has nearly no limits in numbers, sizes, and performance, and it uses indexes to sort/find its data.
IMAPEngine is IMAP4Rev1 compatible and also has built-in support for the ACL, ID, IDLE, and UIDPLUS extensions. It is not (yet) an MTA, but it retrieves incoming messages from different POP3 servers. An simple integrated Web interface makes account configuration easy.
Enhancements:
- corrected imapfetch.mod
- included easyserver web server and developed index.mod for web based account configuration
- created imapconfig.mod for basic account setup on command line (better use the web frontend!)
- code cleanups, restructuring and some performance tweaking
- improved the table structure: bodies are stored as BLOB now. This raises the download performance significantly on big emails (more than ~2 MB)
- added the UIDPLUS extension as defined in RFC 2359. Mozilla Mail can handle it properly
- free client dependend flags now can be used (e.g. "Junk" sign of Mozilla Mail)
- the LIST and LSUB commands are now processed as defined in the IMAP4Rev1
- smaller semaphore scopes to each command that writes to the db, so table locks use only the minimum amount of time they need
- added the NAMESPACE extension as defined in RFC 2342
- added the ACL extension as defined in RFC 2086 (the commands are all implemented, but the rights are not yet mentioned by the server)
- added the IDLE extension as defined in RFC 2177 (though not sending any information when idle!)
- added the ID extension as defined in RFC 2971
Download (0.23MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
940 downloads
PGSSAPI 0.0.0.22
PGSSAPI lets you selectively plug external GSSAPI security libraries into applications. more>>
PGSSAPI lets you selectively plug external GSSAPI security libraries into applications without having to recompile the application each time. It decouples applications from particular GSSAPI implementations and allows you to combine implementations.
The project works by wrapping and dispatching standard GSS calls to libraries that you would otherwise directly link against. It dynamically loads GSS libraries, selecting which one to dispatch to by configuration file or by examining the standard header of GSS network tokens.
Enhancements:
- In this alpha release not every GSS operation wrapper has been implemented.
- The focus has been on supporting both versions 1 and 2 of the GSSAPI (RFC1509 and RFC 2744).
- A test/demo tool included with the sources shows gss_init_sec_context and gss_accept_sec_context working sufficiently to build a security context.
<<lessThe project works by wrapping and dispatching standard GSS calls to libraries that you would otherwise directly link against. It dynamically loads GSS libraries, selecting which one to dispatch to by configuration file or by examining the standard header of GSS network tokens.
Enhancements:
- In this alpha release not every GSS operation wrapper has been implemented.
- The focus has been on supporting both versions 1 and 2 of the GSSAPI (RFC1509 and RFC 2744).
- A test/demo tool included with the sources shows gss_init_sec_context and gss_accept_sec_context working sufficiently to build a security context.
Download (0.32MB)
Added: 2007-04-19 License: GPL (GNU General Public License) Price:
918 downloads
Email::Find 0.10
Email::Find allows you to find RFC 822 email addresses in plain text. more>>
Email::Find allows you to find RFC 822 email addresses in plain text.
Email::Find is a module for finding a subset of RFC 822 email addresses in arbitrary text (see "CAVEATS"). The addresses it finds are not guaranteed to exist or even actually be email addresses at all (see "CAVEATS"), but they will be valid RFC 822 syntax.
Email::Find will perform some heuristics to avoid some of the more obvious red herrings and false addresses, but theres only so much which can be done without a human.
Finds email addresses in the text and executes callback registered.
The callback is given two arguments. The first is a Mail::Address object representing the address found. The second is the actual original email as found in the text. Whatever the callback returns will replace the original text.
<<lessEmail::Find is a module for finding a subset of RFC 822 email addresses in arbitrary text (see "CAVEATS"). The addresses it finds are not guaranteed to exist or even actually be email addresses at all (see "CAVEATS"), but they will be valid RFC 822 syntax.
Email::Find will perform some heuristics to avoid some of the more obvious red herrings and false addresses, but theres only so much which can be done without a human.
Finds email addresses in the text and executes callback registered.
The callback is given two arguments. The first is a Mail::Address object representing the address found. The second is the actual original email as found in the text. Whatever the callback returns will replace the original text.
Download (0.039MB)
Added: 2007-03-31 License: Perl Artistic License Price:
943 downloads
mod_daytime 0.01
mod_daytime Apache module is a RFC-867-compliant Daytime service. more>>
mod_daytime Apache module is a RFC-867-compliant Daytime service.
Multi Protocol Support is one of the most important new features in Apache 2: The server is able to handle other TCP network services than just HTTP. As an example, the default distribution of Apache 2 HTTPD contains the mod_echo module that implements the Echo protocol. This standard TCP service answers any request by returning its complete contents. As a result, it can be helpful in testing network connections.
Based on the source code of mod_echo, I have written the mod_daytime module. It implements the Daytime Service according to RFC 867. This service answers any request by sending the current date and time. The RFC doesnt specify a format; this implementation is using ctime(3).
It is usually recommended to create a virtual host that works as a Daytime server exclusively. You might configure it for TCP port 13 on which the Daytime Service listens by default. The configuration to achieve that looks like this:
# Listen on Port 13
Listen 13
< VirtualHost *:13 >
ProtocolDaytime On
< /VirtualHost >
The first thing you need to do, however, is compile the source code provided here. On a UNIX system where Apache 2 has been installed with DSO support, you can simply type the following command (as root):
# [/path/of/apache/bin/]apxs -cia mod_daytime.c
This will create the DSO file mod_daytime.so, copy it into the Apache installations /modules directory, and add the following directive for loading the module to httpd.conf:
LoadModule daytime_module modules/mod_daytime.c
<<lessMulti Protocol Support is one of the most important new features in Apache 2: The server is able to handle other TCP network services than just HTTP. As an example, the default distribution of Apache 2 HTTPD contains the mod_echo module that implements the Echo protocol. This standard TCP service answers any request by returning its complete contents. As a result, it can be helpful in testing network connections.
Based on the source code of mod_echo, I have written the mod_daytime module. It implements the Daytime Service according to RFC 867. This service answers any request by sending the current date and time. The RFC doesnt specify a format; this implementation is using ctime(3).
It is usually recommended to create a virtual host that works as a Daytime server exclusively. You might configure it for TCP port 13 on which the Daytime Service listens by default. The configuration to achieve that looks like this:
# Listen on Port 13
Listen 13
< VirtualHost *:13 >
ProtocolDaytime On
< /VirtualHost >
The first thing you need to do, however, is compile the source code provided here. On a UNIX system where Apache 2 has been installed with DSO support, you can simply type the following command (as root):
# [/path/of/apache/bin/]apxs -cia mod_daytime.c
This will create the DSO file mod_daytime.so, copy it into the Apache installations /modules directory, and add the following directive for loading the module to httpd.conf:
LoadModule daytime_module modules/mod_daytime.c
Download (0.003MB)
Added: 2006-05-19 License: The Apache License 2.0 Price:
1254 downloads
XPertMailer 1.4.5
XPertMailer is a PHP class to send encoded MIME-type email messages. more>>
XPertMailer is a PHP class to send encoded MIME-type email messages like text, HTML, HTML embedded images, attachments, etc., to client, localhost, or relay SMTP servers with optional authorisation.
The class functions are optimised to execute in a very small time and to be easy to use. This reduces the size of the code and the time required to write it.
Data sending is done according to RFC 821 and RFC 2821, and the message type is in compliance with RFC 2045, RFC 2046, RFC 2047, RFC 2048, RFC 2049, and RFC 2822.
Enhancements:
- Added the clear attachments functionality
<<lessThe class functions are optimised to execute in a very small time and to be easy to use. This reduces the size of the code and the time required to write it.
Data sending is done according to RFC 821 and RFC 2821, and the message type is in compliance with RFC 2045, RFC 2046, RFC 2047, RFC 2048, RFC 2049, and RFC 2822.
Enhancements:
- Added the clear attachments functionality
Download (0.028MB)
Added: 2006-05-26 License: GPL (GNU General Public License) Price:
1284 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above gmac rfc search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed