FreeBSD Manual Pages
Crypt::PWSafe3::HeaderUserdContributed Perl DocuCrypt::PWSafe3::HeaderField(3) NAME Crypt::PWSafe3::HeaderField - represent a passwordsafe v3 header field. SYNOPSIS use Crypt::PWSafe3; my $who = $vault->getheader('wholastsaved'); print $who->value; my $h = Crypt::PWSafe3::HeaderField->new(name => 'savedonhost', value => 'localhost'); $vault->addheader($h); DESCRIPTION Crypt::PWSafe3::HeaderField represents a header field. This is the raw implementation and you normally don't have to cope with it. However, if you ever do, you can add/replace any field type this way: my $field = Crypt::PWSafe3::HeaderField->new( value => 'localhost', name => 'savedonhost' ); $record->addheader($field); This is the preferred way to do it, Crypt::PWSafe3 does it internaly exactly like this. If there already exists a field of this type, it will be overwritten. HEADER FIELDS A password safe v3 database supports the following header fields: version uuid preferences treedisplaystatus lastsavetime wholastsaved whatlastsaved savedbyuser savedonhost databasename databasedescr databasefilters eof Refer to Crypt::PWSafe3::Databaseformat for details on those header fields. SEE ALSO Crypt::PWSafe3 AUTHOR T.v.Dein <tlinden@cpan.org> COPYRIGHT Copyright (c) 2011-2015 by T.v.Dein <tlinden@cpan.org>. All rights reserved. LICENSE This program is free software; you can redistribute it and/or modify it under the same terms of the Artistic License 2.0, see: <http://www.perlfoundation.org/artistic_license_2_0> perl v5.32.0 2015-02-16 Crypt::PWSafe3::HeaderField(3)
NAME | SYNOPSIS | DESCRIPTION | HEADER FIELDS | SEE ALSO | AUTHOR | COPYRIGHT | LICENSE
Want to link to this manual page? Use this URL:
<https://www.freebsd.org/cgi/man.cgi?query=Crypt::PWSafe3::HeaderField&sektion=3&manpath=FreeBSD+12.2-RELEASE+and+Ports>