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
|
require 'cgi'
#
# Class to represent the key information result from a query to a key server
# (but not the key itself).
#
# The initialize method parses the hkp 'machine readable' output.
#
# format definition of machine readable index output is here:
# http://tools.ietf.org/html/draft-shaw-openpgp-hkp-00#section-5.2
#
module Nickserver; module HKP
class KeyInfo
attr_accessor :uids, :keyid, :algo, :keylen, :creationdate, :expirationdate, :flags
def initialize(hkp_record)
uid_lines = hkp_record.split("\n")
pub_line = uid_lines.shift
@keyid, @algo, @keylen_s, @creationdate_s, @expirationdate_s, @flags = pub_line.split(':')[1..-1]
@uids = []
uid_lines.each do |uid_line|
uid, creationdate, expirationdate, flags = uid_line.split(':')[1..-1]
# for now, ignore the expirationdate and flags of uids. sks does return them anyway
@uids << CGI.unescape(uid.sub(/.*<(.+)>.*/, '\1'))
end
end
def keylen
@keylen ||= @keylen_s.to_i
end
def creationdate
@creationdate ||= begin
if @creationdate_s
Time.at(@creationdate_s.to_i)
end
end
end
def expirationdate
@expirationdate ||= begin
if @expirationdate_s
Time.at(@expirationdate_s.to_i)
end
end
end
def rsa?
@algo == "1"
end
def dsa?
@algo == "17"
end
def revoked?
@flags =~ /r/
end
def disabled?
@flags =~ /d/
end
def expired?
@flags =~ /e/
end
end
end; end
|