diff --git a/GPG.pm b/GPG.pm new file mode 100644 index 0000000..21d56dc --- /dev/null +++ b/GPG.pm @@ -0,0 +1,15 @@ +package GPG; + +# GPG abstraction layer for encrypt/decrypt password database + +sub new { + my $class = shift; + + my $self = { + }; + + bless $self, $class; + return $self; +} + +1; \ No newline at end of file