File tree 6 files changed +26
-20
lines changed
6 files changed +26
-20
lines changed Original file line number Diff line number Diff line change 1
1
.TH apr_crypt "8" "February 2013" "apr_crypt" "DB2 User Defined Function and Stored Procedure"
2
2
.SH NAME
3
- apr_crypt \- DB2 UDF and SP for encrypting passwords
3
+ apr_crypt \- DB2 UDF and SP to generate a seeded CRYPT
4
4
.SH SYNOPSIS
5
5
>>-APR_CRYPT--(--expression--)---------------------------------><
6
6
.PP
Original file line number Diff line number Diff line change 1
- .TH apr_md5 "8" "June 2012 " "apr_md5" "DB2 User Defined Function and Stored Procedure"
1
+ .TH apr_md5 "8" "February 2013 " "apr_md5" "DB2 User Defined Function and Stored Procedure"
2
2
.SH NAME
3
- apr_md5 \- DB2 UDF and SP for encrypting passwords
3
+ apr_md5 \- DB2 UDF and SP to generate a seeded MD5 hash
4
4
.SH SYNOPSIS
5
5
>>-APR_MD5--(--expression--)-----------------------------------><
6
6
.PP
@@ -12,7 +12,8 @@ The argument can be a character string that is either a CHAR or VARCHAR not exce
12
12
.PP
13
13
The result of the function is CHAR(37). The result can be null; if the argument is null, the result is the null value.
14
14
.SH EXAMPLES
15
- 1)
15
+ \fB Example 1: \fR
16
+
16
17
.br
17
18
Inserting the user \fI test \fR and the seeded md5 hash of the clear text
18
19
.br
@@ -23,7 +24,8 @@ INSERT INTO USERS (username, password)
23
24
VALUES ('test', apr_md5('testpwd'))
24
25
.fi
25
26
.PP
26
- 2)
27
+ \fB Example 2: \fR
28
+
27
29
.br
28
30
.nf
29
31
SELECT apr_md5('testpwd') FROM SYSIBM.SYSDUMMY1
@@ -35,7 +37,8 @@ $apr1$HsTNH...$bmlPUSoPOF/Qhznl.sAq6/
35
37
1 record(s) selected.
36
38
.fi
37
39
.PP
38
- 3)
40
+ \fB Example 3: \fR
41
+
39
42
.br
40
43
.nf
41
44
CALL apr_md5('testpwd', ?)
@@ -52,6 +55,6 @@ Written by Helmut K. C. Tessarek.
52
55
.SH "BUGS"
53
56
Hopefully none :-) But if you find one, please report it at:
54
57
.br
55
- http://sourceforge.net/tracker/?func=add&group_id=103064&atid=633717
58
+ http://sourceforge.net/p/mod-auth-ibmdb2/bugs
56
59
.SH "WEB SITE"
57
60
http://mod-auth-ibmdb2.sourceforge.net
Original file line number Diff line number Diff line change 1
- .TH apr_sha1 "8" "June 2012 " "apr_sha1" "DB2 User Defined Function and Stored Procedure"
1
+ .TH apr_sha1 "8" "February 2013 " "apr_sha1" "DB2 User Defined Function and Stored Procedure"
2
2
.SH NAME
3
- apr_sha1 \- DB2 UDF and SP for encrypting passwords
3
+ apr_sha1 \- DB2 UDF and SP to generate an SHA1 hash
4
4
.SH SYNOPSIS
5
5
>>-APR_SHA1--(--expression--)----------------------------------><
6
6
.PP
@@ -12,7 +12,8 @@ The argument can be a character string that is either a CHAR or VARCHAR not exce
12
12
.PP
13
13
The result of the function is CHAR(33). The result can be null; if the argument is null, the result is the null value.
14
14
.SH EXAMPLES
15
- 1)
15
+ \fB Example 1: \fR
16
+
16
17
.br
17
18
Inserting the user \fI test \fR and the sha1 crypted clear text \fI testpwd \fR to the table \fI users \fR .
18
19
.PP
@@ -21,7 +22,8 @@ INSERT INTO USERS (username, password)
21
22
VALUES ('test', apr_sha1('testpwd'))
22
23
.fi
23
24
.PP
24
- 2)
25
+ \fB Example 2: \fR
26
+
25
27
.br
26
28
.nf
27
29
SELECT apr_sha1('testpwd') FROM SYSIBM.SYSDUMMY1
@@ -33,7 +35,8 @@ SELECT apr_sha1('testpwd') FROM SYSIBM.SYSDUMMY1
33
35
1 record(s) selected.
34
36
.fi
35
37
.PP
36
- 3)
38
+ \fB Example 3: \fR
39
+
37
40
.br
38
41
.nf
39
42
CALL apr_sha1('testpwd', ?)
@@ -50,6 +53,6 @@ Written by Helmut K. C. Tessarek.
50
53
.SH "BUGS"
51
54
Hopefully none :-) But if you find one, please report it at:
52
55
.br
53
- http://sourceforge.net/tracker/?func=add&group_id=103064&atid=633717
56
+ http://sourceforge.net/p/mod-auth-ibmdb2/bugs
54
57
.SH "WEB SITE"
55
58
http://mod-auth-ibmdb2.sourceforge.net
Original file line number Diff line number Diff line change 1
- .TH db2-auth -routines "8" "June 2012 " "db2-auth -routines 1.1" "DB2 UDFs and Stored Procedures"
1
+ .TH db2-hash -routines "8" "February 2013 " "db2-hash -routines 1.1" "DB2 UDFs and Stored Procedures"
2
2
.SH NAME
3
- db2-auth -routines \- DB2 UDFs and SPs for encrypting passwords
3
+ db2-hash -routines \- DB2 UDFs and SPs to generate and validate hashes
4
4
.SH SYNOPSIS
5
5
\fB User Defined Functions: \fR
6
6
.PP
@@ -26,7 +26,7 @@ db2-auth-routines \- DB2 UDFs and SPs for encrypting passwords
26
26
.PP
27
27
>>-VALIDATE_PW--(--password--,--hash--,--is_valid--)-----------><
28
28
.SH DESCRIPTION
29
- These functions and procedures can be used to encrypt passwords within DB2.
29
+ These functions and procedures can be used to generate hashes in DB2.
30
30
.TP
31
31
\fB md5( ' \fR\fI cleartext \fR\fB ' ) \fR
32
32
.RS 0
@@ -271,6 +271,6 @@ Written by Helmut K. C. Tessarek.
271
271
.SH "BUGS"
272
272
Hopefully none :-) But if you find one, please report it at:
273
273
.br
274
- http://sourceforge.net/tracker/?func=add&group_id=103064&atid=633717
274
+ http://sourceforge.net/p/mod-auth-ibmdb2/bugs
275
275
.SH "WEB SITE"
276
276
http://mod-auth-ibmdb2.sourceforge.net
Original file line number Diff line number Diff line change 1
1
.TH md5 "8" "February 2013" "md5" "DB2 User Defined Function and Stored Procedure"
2
2
.SH NAME
3
- md5 \- DB2 UDF and SP to generate an md5 hash
3
+ md5 \- DB2 UDF and SP to generate an MD5 hash
4
4
.SH SYNOPSIS
5
5
>>-MD5--(--expression--)---------------------------------------><
6
6
.PP
Original file line number Diff line number Diff line change 1
- .TH mod_authnz_ibmdb2 "8" "June 2012 " "mod_authnz_ibmdb2" "Apache module"
1
+ .TH mod_authnz_ibmdb2 "8" "February 2013 " "mod_authnz_ibmdb2" "Apache module"
2
2
.SH NAME
3
3
mod_authnz_ibmdb2 \- Apache authentication module for DB2
4
4
.SH DESCRIPTION
@@ -235,6 +235,6 @@ Written by Helmut K. C. Tessarek.
235
235
.SH "BUGS"
236
236
Hopefully none :-) But if you find one, please report it at:
237
237
.br
238
- http://sourceforge.net/tracker/?func=add&group_id=103064&atid=633717
238
+ http://sourceforge.net/p/mod-auth-ibmdb2/bugs
239
239
.SH "WEB SITE"
240
240
http://mod-auth-ibmdb2.sourceforge.net
You can’t perform that action at this time.
0 commit comments