Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

How to use: drag and drop files into the executable icon. You will be asked for a password. The program will then create encrypted files with the ".gpg" extension (it will not delete the original files for you).

If you drop files with the ".gpg" extension, the files will be un-encrypted back.

Installation: use "PAR" (or Perl2EXE/PerlApp) to make an executable file, and copy it to the pen drive. You will need to copy the "gpg" executable to the same directory.

I've tested it with perlapp, in Windows XP and NT.

#!/usr/bin/perl -w # Copyright (c) 2005 Flavio S. Glock. All rights reserved. # This program is free software; you can redistribute it # and/or modify it under the same terms as Perl itself. use strict; use Tk; { my $gpg = $0; $gpg =~ s/[a-z0-9.]+$/gpg.exe/i; exit unless @ARGV; my $main = MainWindow->new; $main->Label(-text => 'Passphrase')->pack; my $pass = $main->Entry(-width => 12, -show => '*'); $pass->pack; $main->Button(-text => 'Go', -command => sub { do_encrypt($pass, $gpg, @ARGV); $main->destroy; } )->pack; $main->Button(-text => 'Cancel', -command => [$main => 'destroy'] )->pack; MainLoop; } sub do_encrypt { my ($pass, $gpg, @files) = @_; my @cmd; for ( @files ) { if ( $_ =~ /(.*)\.gpg$/i ) { @cmd = ($gpg, '--decrypt', '--passphrase-fd 0', '-o', '"' . $1 . '"', '--batch', '--no-tty', '"' . $_ . '"', ); } else { @cmd = ($gpg, '--symmetric', '--passphrase-fd 0', '-o', '"' . $_ . '.gpg"', '--batch', '--no-tty', '"' . $_ . '"', ); } open( FILE, '|-', "@cmd" ); print FILE $pass->get, "\n"; close( FILE ); } }

In reply to Drag-and-drop encrypting files in a pen drive by fglock

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (1)
As of 2024-04-25 03:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found