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


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

Index


NAME

Top

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

SYNOPSIS

Top

    use Authen::Krb5::KDB::Key;

    Authen::Krb5::KDB::Key->new ( checks  => N,
				  lineno  => N,
				  version => $version,
				  kvno    => $kvno,
				  data    => $data );

    foreach my $key (@{$principal->key_data()}) {
	print " Ver: ", $key->version(), "\n";
	print "Kvno: ", $key->kvno(), "\n";
	while ($key->next_data()) {
	    print " Type:     ", $key->type(), "\n";
	    print " Length:   ", $key->length(), "\n";
	    print " Contents: ", $key->contents(), "\n";
	}
    }




DESCRIPTION

Top

Generally this functions are only used internally within other KDB modules.

new()
version
kvno
next_data()
type (read only)
length (read only)
contents
parse_contents

Parse hexadecimal contents and return as a string.

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.