NAME

CTK::Crypt - Cryptography

VERSION

Version 1.71

SYNOPSIS

$c->gpg_decript(
        -in      => CTK::catfile($DATADIR,'in','test.txt.asc'), # Source encripted-file
        -out     => CTK::catfile($DATADIR,'out','test.txt'),    # Destination decripted-file
        -gpghome => '', # RESERVED
        -certdir => '', # Certificate directory. Default: ./data/cert
        -pubkey  => '', # Public key file. Default: ./data/cert/public.key
        -privkey => '', # Private key file. Default: ./data/cert/private.key
        -pass    => '', # Passphrase
    );

DESCRIPTION

See http://www.gnupg.org (GPG4Win - http://gpg4win.org) for details

gpg_decript

$c->gpg_decript(
        -in      => CTK::catfile($DATADIR,'in','test.txt.asc'), # Source encripted-file
        -out     => CTK::catfile($DATADIR,'out','test.txt'),    # Destination decripted-file
        -gpghome => '', # RESERVED
        -certdir => '', # Certificate directory. Default: ./data/cert
        -pubkey  => '', # Public key file. Default: ./data/cert/public.key
        -privkey => '', # Private key file. Default: ./data/cert/private.key
        -pass    => '', # Passphrase
    );

PGP Decrypting the files group

AUTHOR

Sergey Lepenkov (Serz Minus) http://www.serzik.com <minus@mail333.com>

COPYRIGHT

Copyright (C) 1998-2017 D&D Corporation. All Rights Reserved

LICENSE

This program is free software; you can redistribute it and/or modify it under the same terms and conditions as Perl itself.

This program is distributed under the GNU LGPL v3 (GNU Lesser General Public License version 3).

See LICENSE file