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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
|
module GPGME
##
# A context within which all cryptographic operations are performed.
#
# More operations can be done which are not available in the higher level
# API. Note how to create a new instance of this class in {GPGME::Ctx.new}.
#
class Ctx
##
# Create a new instance from the given +options+. Must be released either
# executing the operations inside a block, or executing {GPGME::Ctx#release}
# afterwards.
#
# @param [Hash] options
# The optional parameters are as follows:
# * +:protocol+ Either +PROTOCOL_OpenPGP+ or +PROTOCOL_CMS+.
# * +:armor+ will return ASCII armored outputs if specified true.
# * +:textmode+ if +true+, inform the recipient that the input is text.
# * +:keylist_mode+ One of: +KEYLIST_MODE_LOCAL+, +KEYLIST_MODE_EXTERN+,
# +KEYLIST_MODE_SIGS+ or +KEYLIST_MODE_VALIDATE+.
# * +:pinentry_mode+ One of: +PINENTRY_MODE_DEFAULT+,
# +PINENTRY_MODE_ASK+, +PINENTRY_MODE_CANCEL+,
# +PINENTRY_MODE_ERROR+, or +PINENTRY_MODE_LOOPBACK+.
# * +:offline+ if set to true, dirmngr will not contact external services
# * +:password+ password of the passphrased password being used.
# * +:passphrase_callback+ A callback function. See {#set_passphrase_callback}.
# * +:passphrase_callback_value+ An object passed to passphrase_callback.
# * +:progress_callback+ A callback function. See {#set_progress_callback}.
# * +:progress_callback_value+ An object passed to progress_callback.
# * +:status_callback+ A callback function. See {#set_status_callback}.
# * +:status_callback_value+ An object passed to status_callback.
#
# @example
# ctx = GPGME::Ctx.new
# # operate on ctx
# ctx.release
#
# @example
# GPGME::Ctx.new do |ctx|
# # operate on ctx
# end
#
def self.new(options = {})
rctx = []
err = GPGME::gpgme_new(rctx)
exc = GPGME::error_to_exception(err)
raise exc if exc
ctx = rctx[0]
ctx.protocol = options[:protocol] if options[:protocol]
ctx.armor = options[:armor] if options[:armor]
ctx.textmode = options[:textmode] if options[:textmode]
ctx.keylist_mode = options[:keylist_mode] if options[:keylist_mode]
ctx.pinentry_mode = options[:pinentry_mode] if options[:pinentry_mode]
ctx.offline = options[:offline] if options[:offline]
if options[:password]
ctx.set_passphrase_callback GPGME::Ctx.method(:pass_function),
options[:password]
else
if options[:passphrase_callback]
ctx.set_passphrase_callback options[:passphrase_callback],
options[:passphrase_callback_value]
end
end
if options[:progress_callback]
ctx.set_progress_callback options[:progress_callback],
options[:progress_callback_value]
end
if options[:status_callback]
ctx.set_status_callback options[:status_callback],
options[:status_callback_value]
end
if block_given?
begin
yield ctx
ensure
GPGME::gpgme_release(ctx)
end
else
ctx
end
end
##
# Releases the Ctx instance. Must be called if it was initialized without
# a block.
#
# @example
# ctx = GPGME::Ctx.new
# # operate on ctx
# ctx.release
#
def release
GPGME::gpgme_release(self)
end
##
# Getters and setters
##
# Set the +protocol+ used within this context. See {GPGME::Ctx.new} for
# possible values.
def protocol=(proto)
err = GPGME::gpgme_set_protocol(self, proto)
exc = GPGME::error_to_exception(err)
raise exc if exc
proto
end
# Return the +protocol+ used within this context.
def protocol
GPGME::gpgme_get_protocol(self)
end
# Tell whether the output should be ASCII armored.
def armor=(yes)
GPGME::gpgme_set_armor(self, yes ? 1 : 0)
yes
end
# Return true if the output is ASCII armored.
def armor
GPGME::gpgme_get_armor(self) == 1 ? true : false
end
# Tell whether canonical text mode should be used.
def textmode=(yes)
GPGME::gpgme_set_textmode(self, yes ? 1 : 0)
yes
end
# Return true if canonical text mode is enabled.
def textmode
GPGME::gpgme_get_textmode(self) == 1 ? true : false
end
# Change the default behaviour of the key listing functions.
def keylist_mode=(mode)
GPGME::gpgme_set_keylist_mode(self, mode)
mode
end
# Return the current key listing mode.
def keylist_mode
GPGME::gpgme_get_keylist_mode(self)
end
# Change the default behaviour of the pinentry invocation.
def pinentry_mode=(mode)
GPGME::gpgme_set_pinentry_mode(self, mode)
mode
end
# Return the current pinentry mode.
def pinentry_mode
GPGME::gpgme_get_pinentry_mode(self)
end
# Change the default behaviour of the dirmngr that might require
# connections to external services.
def offline=(mode)
GPGME::gpgme_set_offline(self, mode)
mode
end
# Return the current offline mode.
def offline
GPGME::gpgme_get_offline(self)
end
##
# Passphrase and progress callbacks
##
# Set the passphrase callback with given hook value.
# +passfunc+ should respond to +call+ with 5 arguments.
#
# * +obj+ the parameter +:passphrase_callback_value+ passed when creating
# the {GPGME::Ctx} object.
# * +uid_hint+ hint as to what key are we asking the password for. Ex:
#
# +CFB3294A50C2CFD7 Albert Llop <mrsimo@example.com>+
#
# * +passphrase_info+
# * +prev_was_bad+ 0 if it's the first time the password is being asked,
# 1 otherwise.
# * +fd+ file descriptor where the password must be written too.
#
# Expects a Method object which can be obtained by the +method+ method
# (really..).
#
# ctx.set_passphrase_callback(MyModule.method(:passfunc))
#
# @example this method will simply return +maria+ as password.
# def pass_function(obj, uid_hint, passphrase_info, prev_was_bad, fd)
# io = IO.for_fd(fd, 'w')
# io.puts "maria"
# io.flush
# end
#
# @example this will interactively ask for the password
# def passfunc(obj, 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
#
# Note that this function doesn't work with GnuPG 2.0. You can
# use either GnuPG 1.x, which can be installed in parallel with
# GnuPG 2.0, or GnuPG 2.1, which has loopback pinentry feature (see
# {#pinentry_mode}).
def set_passphrase_callback(passfunc, hook_value = nil)
GPGME::gpgme_set_passphrase_cb(self, passfunc, hook_value)
end
alias set_passphrase_cb set_passphrase_callback
# Set the progress callback with given hook value.
# <i>progfunc</i> should respond to <code>call</code> with 5 arguments.
#
# def progfunc(hook, what, type, current, total)
# $stderr.write("#{what}: #{current}/#{total}\r")
# $stderr.flush
# end
#
# ctx.set_progress_callback(method(:progfunc))
#
def set_progress_callback(progfunc, hook_value = nil)
GPGME::gpgme_set_progress_cb(self, progfunc, hook_value)
end
alias set_progress_cb set_progress_callback
# Set the status callback with given hook value.
# +statusfunc+ should respond to +call+ with 3 arguments.
#
# * +obj+ the parameter +:status_callback_value+ passed when creating
# the {GPGME::Ctx} object.
# * +keyword+ the name of the status message
# * +args+ any arguments for the status message
#
# def status_function(obj, keyword, args)
# $stderr.puts("#{keyword} #{args}")
# return 0
# end
def set_status_callback(statusfunc, hook_value = nil)
GPGME::gpgme_set_status_cb(self, statusfunc, hook_value)
end
alias set_status_cb set_status_callback
##
# Searching and iterating through keys. Used by {GPGME::Key.find}
##
# Initiate a key listing operation for given pattern. If +pattern+ is
# +nil+, all available keys are returned. If +secret_only<+ is +true+,
# only secret keys are returned.
#
# Used by {GPGME::Ctx#each_key}
def keylist_start(pattern = nil, secret_only = false)
err = GPGME::gpgme_op_keylist_start(self, pattern, secret_only ? 1 : 0)
exc = GPGME::error_to_exception(err)
raise exc if exc
end
# Advance to the next key in the key listing operation.
#
# Used by {GPGME::Ctx#each_key}
def keylist_next
rkey = []
err = GPGME::gpgme_op_keylist_next(self, rkey)
exc = GPGME::error_to_exception(err)
raise exc if exc
rkey[0]
end
# End a pending key list operation.
#
# Used by {GPGME::Ctx#each_key}
def keylist_end
err = GPGME::gpgme_op_keylist_end(self)
exc = GPGME::error_to_exception(err)
raise exc if exc
end
# Convenient method to iterate over keys.
#
# If +pattern+ is +nil+, all available keys are returned. If +secret_only+
# is +true+, only secret keys are returned.
#
# See {GPGME::Key.find} for an example of how to use, or for an easier way
# to use.
def each_key(pattern = nil, secret_only = false, &block)
keylist_start(pattern, secret_only)
begin
loop { yield keylist_next }
rescue EOFError
# The last key in the list has already been returned.
ensure
keylist_end
end
end
alias each_keys each_key
# Returns the keys that match the +pattern+, or all if +pattern+ is nil.
# Returns only secret keys if +secret_only+ is true.
def keys(pattern = nil, secret_only = nil)
keys = []
each_key(pattern, secret_only) do |key|
keys << key
end
keys
end
# Get the key with the +fingerprint+.
# If +secret+ is +true+, secret key is returned.
def get_key(fingerprint, secret = false)
rkey = []
err = GPGME::gpgme_get_key(self, fingerprint, rkey, secret ? 1 : 0)
exc = GPGME::error_to_exception(err)
raise exc if exc
rkey[0]
end
##
# Import/export and generation/deletion of keys
##
# Generate a new key pair.
# +parms+ is a string which looks like
#
# <GnupgKeyParms format="internal">
# Key-Type: DSA
# Key-Length: 1024
# Subkey-Type: ELG-E
# Subkey-Length: 1024
# Name-Real: Joe Tester
# Name-Comment: with stupid passphrase
# Name-Email: joe@foo.bar
# Expire-Date: 0
# Passphrase: abc
# </GnupgKeyParms>
#
# If +pubkey+ and +seckey+ are both set to +nil+, it stores the generated
# key pair into your key ring.
def generate_key(parms, pubkey = nil, seckey = nil)
err = GPGME::gpgme_op_genkey(self, parms, pubkey, seckey)
exc = GPGME::error_to_exception(err)
raise exc if exc
end
alias genkey generate_key
# Extract the public keys that match the +recipients+. Returns a
# {GPGME::Data} object which is not rewinded (should do +seek(0)+
# before reading).
#
# Private keys cannot be exported due to GPGME restrictions.
#
# If passed, the key will be exported to +keydata+, which must be
# a {GPGME::Data} object.
def export_keys(recipients, keydata = Data.new, mode=0)
err = GPGME::gpgme_op_export(self, recipients, mode, keydata)
exc = GPGME::error_to_exception(err)
raise exc if exc
keydata
end
alias export export_keys
# Add the keys in the data buffer to the key ring.
def import_keys(keydata)
err = GPGME::gpgme_op_import(self, keydata)
exc = GPGME::error_to_exception(err)
raise exc if exc
end
alias import import_keys
def import_result
GPGME::gpgme_op_import_result(self)
end
# Delete the key from the key ring.
# If allow_secret is false, only public keys are deleted,
# otherwise secret keys are deleted as well.
def delete_key(key, allow_secret = false)
err = GPGME::gpgme_op_delete(self, key, allow_secret ? 1 : 0)
exc = GPGME::error_to_exception(err)
raise exc if exc
end
alias delete delete_key
# Edit attributes of the key in the local key ring.
def edit_key(key, editfunc, hook_value = nil, out = Data.new)
err = GPGME::gpgme_op_edit(self, key, editfunc, hook_value, out)
exc = GPGME::error_to_exception(err)
raise exc if exc
end
alias edit edit_key
# Edit attributes of the key on the card.
def edit_card_key(key, editfunc, hook_value = nil, out = Data.new)
err = GPGME::gpgme_op_card_edit(self, key, editfunc, hook_value, out)
exc = GPGME::error_to_exception(err)
raise exc if exc
end
alias edit_card edit_card_key
alias card_edit edit_card_key
##
# Crypto operations
##
# Decrypt the ciphertext and return the plaintext.
def decrypt(cipher, plain = Data.new)
err = GPGME::gpgme_op_decrypt(self, cipher, plain)
exc = GPGME::error_to_exception(err)
raise exc if exc
plain
end
def decrypt_verify(cipher, plain = Data.new)
err = GPGME::gpgme_op_decrypt_verify(self, cipher, plain)
exc = GPGME::error_to_exception(err)
raise exc if exc
plain
end
def decrypt_result
GPGME::gpgme_op_decrypt_result(self)
end
# Verify that the signature in the data object is a valid signature.
def verify(sig, signed_text = nil, plain = Data.new)
err = GPGME::gpgme_op_verify(self, sig, signed_text, plain)
exc = GPGME::error_to_exception(err)
raise exc if exc
plain
end
def verify_result
GPGME::gpgme_op_verify_result(self)
end
# Remove the list of signers from this object.
def clear_signers
GPGME::gpgme_signers_clear(self)
end
# Add _keys_ to the list of signers.
def add_signer(*keys)
keys.each do |key|
err = GPGME::gpgme_signers_add(self, key)
exc = GPGME::error_to_exception(err)
raise exc if exc
end
end
# Create a signature for the text.
# +plain+ is a data object which contains the text.
# +sig+ is a data object where the generated signature is stored.
def sign(plain, sig = Data.new, mode = GPGME::SIG_MODE_NORMAL)
err = GPGME::gpgme_op_sign(self, plain, sig, mode)
exc = GPGME::error_to_exception(err)
raise exc if exc
sig
end
def sign_result
GPGME::gpgme_op_sign_result(self)
end
# Encrypt the plaintext in the data object for the recipients and
# return the ciphertext.
def encrypt(recp, plain, cipher = Data.new, flags = 0)
err = GPGME::gpgme_op_encrypt(self, recp, flags, plain, cipher)
exc = GPGME::error_to_exception(err)
raise exc if exc
cipher
end
def encrypt_result
GPGME::gpgme_op_encrypt_result(self)
end
def encrypt_sign(recp, plain, cipher = Data.new, flags = 0)
err = GPGME::gpgme_op_encrypt_sign(self, recp, flags, plain, cipher)
exc = GPGME::error_to_exception(err)
raise exc if exc
cipher
end
def spawn(file, argv, datain, dataout, dataerr, flags = 0)
err = GPGME::gpgme_op_spawn(self, file, argv, datain, dataout, dataerr,
flags)
exc = GPGME::error_to_exception(err)
raise exc if exc
end
def inspect
"#<#{self.class} protocol=#{PROTOCOL_NAMES[protocol] || protocol}, \
armor=#{armor}, textmode=#{textmode}, \
keylist_mode=#{KEYLIST_MODE_NAMES[keylist_mode]}>"
end
private
def self.pass_function(pass, uid_hint, passphrase_info, prev_was_bad, fd)
io = IO.for_fd(fd, 'w')
io.autoclose = false
io.puts pass
io.flush
end
end
end
|