Method: GPGME::Engine.check_version
- Defined in:
- lib/gpgme/engine.rb
.check_version(proto) ⇒ Boolean
Verify that the engine implementing the protocol proto
is installed in the system. Can be one of PROTOCOL_OpenPGP
or PROTOCOL_CMS
.
18 19 20 21 22 |
# File 'lib/gpgme/engine.rb', line 18 def check_version(proto) err = GPGME::gpgme_engine_check_version(proto) exc = GPGME::error_to_exception(err) !exc end |