Authen::Krb5::KDB::TL - objects for Kerberos V5 database TL data


Authen-Krb5-KDB documentation  | view source Contained in the Authen-Krb5-KDB distribution.

Index


NAME

Top

Authen::Krb5::KDB::TL - objects for Kerberos V5 database TL data

SYNOPSIS

Top

    use Authen::Krb5::KDB::TL;

    Authen::Krb5::KDB::TL->new ( checks   => N,
				 lineno   => N,
				 type     => $type,
				 length   => $length,
				 contents => $contents );

    foreach my $tl (@{$principal->tl_data()}) {
	print "Type:     ", $tl->type(), "\n";
	print "Length:   ", $tl->length(), "\n";
	print "Contents: ", $tl->contents(), "\n";
	print "          ", $tl->parse_contents(), "\n";
    }




DESCRIPTION

Top

Generally the constructor is only used internally within other KDB modules.

new()
type (read only)
length (read only)
contents
parse_contents

Parse hexadecimal contents and return as a string of the form "Date: mod_name\@".

AUTHOR

Top

Dave Steiner, <steiner@bakerst.rutgers.edu>

COPYRIGHT

Top

SEE ALSO

Top

perl(1), kerberos(1), Authen::Krb5::KDB, Authen::Krb5::KDB_H, Authen::Krb5::KDB::V5, Authen::Krb5::KDB::V4, Authen::Krb5::KDB::V3.


Authen-Krb5-KDB documentation  | view source Contained in the Authen-Krb5-KDB distribution.