package AFS::KTC_EKEY; #------------------------------------------------------------------------------ # RCS-Id: "@(#)$Id: KTC_EKEY.pm 881 2008-10-26 18:58:51Z nog $" # # Copyright © 2001-2008 Norbert E. Gruener # # This library is free software; you can redistribute it and/or modify it # under the same terms as Perl itself. #------------------------------------------------------------------------------ use AFS (); use vars qw(@ISA $VERSION); @ISA = qw(AFS); $VERSION = '2.6.1'; sub UserReadPassword { my $class = shift; AFS::ka_UserReadPassword(@_); } sub ReadPassword { my $class = shift; AFS::ka_ReadPassword(@_); } sub StringToKey { my $class = shift; AFS::ka_StringToKey(@_); } sub des_string_to_key { my $class = shift; AFS::ka_des_string_to_key(@_); } # struct ktc_encryptionKey { # char data[8]; # }; 1;