-
Notifications
You must be signed in to change notification settings - Fork 1
/
decfPGP.dfm
168 lines (168 loc) · 3.43 KB
/
decfPGP.dfm
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
object frmMainForm: TfrmMainForm
Left = 686
Top = 361
BorderStyle = bsDialog
Caption = 'Decrypt and verify file - key-based'
ClientHeight = 179
ClientWidth = 433
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
PixelsPerInch = 96
TextHeight = 13
object lbInputFileName: TLabel
Left = 8
Top = 8
Width = 125
Height = 13
Caption = 'File to decrypt and verify:'
end
object Bevel1: TBevel
Left = 0
Top = 128
Width = 433
Height = 10
Shape = bsBottomLine
end
object Label1: TLabel
Left = 8
Top = 56
Width = 55
Height = 13
Caption = 'Output file:'
end
object lbSecretKeyList: TLabel
Left = 8
Top = 448
Width = 109
Height = 13
Caption = 'Key list for decryption:'
Enabled = False
end
object lbPublicKeyList: TLabel
Left = 8
Top = 496
Width = 84
Height = 13
Caption = 'Key for verifying:'
Enabled = False
end
object editInputFile: TEdit
Left = 8
Top = 24
Width = 337
Height = 21
TabOrder = 0
end
object btnBrowseInputFile: TButton
Left = 351
Top = 22
Width = 75
Height = 25
Caption = 'Browse ...'
TabOrder = 1
OnClick = btnBrowseInputFileClick
end
object btnBrowseKeyringFile: TButton
Left = 288
Top = 101
Width = 138
Height = 25
Caption = 'Browse for keyring files ...'
TabOrder = 5
OnClick = btnBrowseKeyringFileClick
end
object btnDecrypt: TButton
Left = 168
Top = 144
Width = 153
Height = 25
Caption = 'Decrypt and verify'
TabOrder = 8
OnClick = btnDecryptClick
end
object btnClose: TButton
Left = 328
Top = 144
Width = 99
Height = 25
Caption = 'Close'
TabOrder = 9
OnClick = btnCloseClick
end
object editOutputFile: TEdit
Left = 8
Top = 72
Width = 337
Height = 21
TabOrder = 2
end
object btnBrowseOutFile: TButton
Left = 351
Top = 70
Width = 75
Height = 25
Caption = 'Browse ...'
TabOrder = 3
OnClick = btnBrowseOutputFileClick
end
object cbSecretKeySelect: TComboBox
Left = 8
Top = 464
Width = 417
Height = 21
Style = csDropDownList
Enabled = False
ItemHeight = 13
TabOrder = 6
end
object cbPublicKeySelect: TComboBox
Left = 8
Top = 512
Width = 417
Height = 21
Style = csDropDownList
Enabled = False
ItemHeight = 13
TabOrder = 7
end
object cbAutoKeySelect: TCheckBox
Left = 8
Top = 104
Width = 273
Height = 17
Caption = 'Automatically select appropriate keys'
Checked = True
State = cbChecked
TabOrder = 4
OnClick = cbAutoKeySelectClick
end
object dlgOpenDialog: TOpenDialog
Options = [ofHideReadOnly, ofFileMustExist, ofEnableSizing]
Left = 8
Top = 144
end
object pgpKeyring: TElPGPKeyring
Left = 104
Top = 144
end
object dlgSaveDialog: TSaveDialog
Left = 40
Top = 144
end
object pgpReader: TElPGPReader
OnKeyPassphrase = pgpReaderKeyPassphrase
OnSignatures = pgpReaderSignatures
Left = 72
Top = 144
end
object pgpTempKeyring: TElPGPKeyring
Left = 136
Top = 144
end
end