Class: GPGME::KeySig

Inherits:
Object
  • Object
show all
Defined in:
lib/gpgme/key_sig.rb,
ext/gpgme/gpgme_n.c

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#keyidObject (readonly)

Returns the value of attribute keyid.



5
6
7
# File 'lib/gpgme/key_sig.rb', line 5

def keyid
  @keyid
end

#pubkey_algoObject (readonly)

Returns the value of attribute pubkey_algo.



5
6
7
# File 'lib/gpgme/key_sig.rb', line 5

def pubkey_algo
  @pubkey_algo
end

Instance Method Details

#expired?Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/gpgme/key_sig.rb', line 11

def expired?
  @expired == 1
end

#expiresObject



27
28
29
# File 'lib/gpgme/key_sig.rb', line 27

def expires
  Time.at(@expires)
end

#exportable?Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/gpgme/key_sig.rb', line 19

def exportable?
  @exportable == 1
end

#inspectObject



31
32
33
# File 'lib/gpgme/key_sig.rb', line 31

def inspect
  "#<#{self.class} #{keyid} timestamp=#{timestamp}, expires=#{expires}>"
end

#invalid?Boolean

Returns:

  • (Boolean)


15
16
17
# File 'lib/gpgme/key_sig.rb', line 15

def invalid?
  @invalid == 1
end

#revoked?Boolean

Returns:

  • (Boolean)


7
8
9
# File 'lib/gpgme/key_sig.rb', line 7

def revoked?
  @revoked == 1
end

#timestampObject



23
24
25
# File 'lib/gpgme/key_sig.rb', line 23

def timestamp
  Time.at(@timestamp)
end