-
Notifications
You must be signed in to change notification settings - Fork 1
/
passwd.pas
123 lines (91 loc) · 3.35 KB
/
passwd.pas
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
(*
Locker, v. 1.0 - small app to keep some text away from prying eyes =)
---------------------------------------------------------------------
Copyright (c) 2020 Adrian Petrila, YO3GFH
Built with Lazarus IDE
Uses DCPCrypt package for Lazarus, (c) David Barton
http://www.cityinthesky.co.uk/opensource/dcpcrypt/
Go to Package->Online Package Manager and install DCPCrypt
TNX to all good ppl to ported it to Lazarus!
----------------------------------------------------------------------
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Features
--------
* when you close it, it simply encrypts to a file whatever text you type in
the editor, making also a backup.
* uses Rijndael and SHA512 for encryption. It's done based on a password
of your choice.
It's taylored to my own needs, modify it to suit your own. I'm not a professional programmer,
so this isn't the best code you'll find on the web, you have been warned :-))
All the bugs are guaranteed to be genuine, and are exclusively mine =)
*)
// password processing dialog and code
unit passwd;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
ExtCtrls;
type
{ Tdlg_pass }
Tdlg_pass = class ( TForm )
Bevel1: TBevel;
bn_ok: TButton;
bn_cancel: TButton;
eold: TEdit;
enew: TEdit;
ecfm: TEdit;
Image1: TImage;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
warning: TLabel;
procedure enewKeyUp ( Sender: TObject; var Key: Word; Shift: TShiftState );
procedure FormCreate ( Sender: TObject );
private
{ private declarations }
public
{ public declarations }
function is_input_ok : boolean;
end;
var
dlg_pass: Tdlg_pass;
implementation
uses misc;
{$R *.lfm}
{$hints off}
// check valid input at every keystroke, disable OK button until correct data
procedure Tdlg_pass.enewKeyUp ( Sender: TObject; var Key: Word; Shift: TShiftState );
begin
bn_ok.Enabled := is_input_ok;
end;
{$hints on}
procedure Tdlg_pass.FormCreate(Sender: TObject);
begin
caption := pass_dlg_title;
end;
// check various stuff depending of what edit controls are enabled
function Tdlg_pass.is_input_ok : boolean;
begin
result := false;
case Tag of
DLGTAG_CHANGE : result := ( length ( enew.Text ) >= 8 ) and
( length ( ecfm.Text ) >= 8 ) and
( enew.Text = ecfm.Text ) and
( enew.Text <> eold.Text );
DLGTAG_NEW : result := ( length ( enew.Text ) >= 8 ) and
( length ( ecfm.Text ) >= 8 ) and
( enew.Text = ecfm.Text );
DLGTAG_VERIFY : result := ( length ( enew.Text ) >= 8 );
end;
end;
end.