File: roundtrip.rb

package info (click to toggle)
ruby-gpgme 2.0.23-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,920 kB
  • sloc: ruby: 3,129; ansic: 2,559; sh: 7; makefile: 5
file content (42 lines) | stat: -rwxr-xr-x 1,072 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env ruby
require 'gpgme'

# If you do not have gpg-agent installed, comment out the following
# and set it as :passphrase_callback.
#
# def passfunc(hook, uid_hint, passphrase_info, prev_was_bad, fd)
#   $stderr.write("Passphrase for #{uid_hint}: ")
#   $stderr.flush
#   begin
#     system('stty -echo')
#     io = IO.for_fd(fd, 'w')
#     io.puts(gets)
#     io.flush
#   ensure
#     (0 ... $_.length).each do |i| $_[i] = ?0 end if $_
#     system('stty echo')
#   end
#   $stderr.puts
# end

unless ENV['GPG_AGENT_INFO']
  $stderr.puts("gpg-agent is not running.  See the comment in #{$0}.")
  exit(1)
end

plain = 'test test test'
puts("Plaintext:\n#{plain}")

# Perform symmetric encryption on PLAIN.
crypto = GPGME::Crypto.new(:armor => true)
cipher = crypto.encrypt(plain, {:symmetric => true,
			  # :passphrase_callback => method(:passfunc)
			})
str = cipher.read
puts("Ciphertext:\n#{str}")

cipher = GPGME::Data.new(str)
plain = crypto.decrypt(cipher, {
			 # :passphrase_callback => method(:passfunc)
		       })
puts("Plaintext:\n#{plain.read}")