Skip to content

Commit 8a23b9e

Browse files
committed
changed wording, date, examples, link
1 parent c60079e commit 8a23b9e

File tree

6 files changed

+26
-20
lines changed

6 files changed

+26
-20
lines changed

man/man8/apr_crypt.8

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.TH apr_crypt "8" "February 2013" "apr_crypt" "DB2 User Defined Function and Stored Procedure"
22
.SH NAME
3-
apr_crypt \- DB2 UDF and SP for encrypting passwords
3+
apr_crypt \- DB2 UDF and SP to generate a seeded CRYPT
44
.SH SYNOPSIS
55
>>-APR_CRYPT--(--expression--)---------------------------------><
66
.PP

man/man8/apr_md5.8

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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"
22
.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
44
.SH SYNOPSIS
55
>>-APR_MD5--(--expression--)-----------------------------------><
66
.PP
@@ -12,7 +12,8 @@ The argument can be a character string that is either a CHAR or VARCHAR not exce
1212
.PP
1313
The result of the function is CHAR(37). The result can be null; if the argument is null, the result is the null value.
1414
.SH EXAMPLES
15-
1)
15+
\fBExample 1:\fR
16+
1617
.br
1718
Inserting the user \fItest\fR and the seeded md5 hash of the clear text
1819
.br
@@ -23,7 +24,8 @@ INSERT INTO USERS (username, password)
2324
VALUES ('test', apr_md5('testpwd'))
2425
.fi
2526
.PP
26-
2)
27+
\fBExample 2:\fR
28+
2729
.br
2830
.nf
2931
SELECT apr_md5('testpwd') FROM SYSIBM.SYSDUMMY1
@@ -35,7 +37,8 @@ $apr1$HsTNH...$bmlPUSoPOF/Qhznl.sAq6/
3537
1 record(s) selected.
3638
.fi
3739
.PP
38-
3)
40+
\fBExample 3:\fR
41+
3942
.br
4043
.nf
4144
CALL apr_md5('testpwd', ?)
@@ -52,6 +55,6 @@ Written by Helmut K. C. Tessarek.
5255
.SH "BUGS"
5356
Hopefully none :-) But if you find one, please report it at:
5457
.br
55-
http://sourceforge.net/tracker/?func=add&group_id=103064&atid=633717
58+
http://sourceforge.net/p/mod-auth-ibmdb2/bugs
5659
.SH "WEB SITE"
5760
http://mod-auth-ibmdb2.sourceforge.net

man/man8/apr_sha1.8

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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"
22
.SH NAME
3-
apr_sha1 \- DB2 UDF and SP for encrypting passwords
3+
apr_sha1 \- DB2 UDF and SP to generate an SHA1 hash
44
.SH SYNOPSIS
55
>>-APR_SHA1--(--expression--)----------------------------------><
66
.PP
@@ -12,7 +12,8 @@ The argument can be a character string that is either a CHAR or VARCHAR not exce
1212
.PP
1313
The result of the function is CHAR(33). The result can be null; if the argument is null, the result is the null value.
1414
.SH EXAMPLES
15-
1)
15+
\fBExample 1:\fR
16+
1617
.br
1718
Inserting the user \fItest\fR and the sha1 crypted clear text \fItestpwd\fR to the table \fIusers\fR.
1819
.PP
@@ -21,7 +22,8 @@ INSERT INTO USERS (username, password)
2122
VALUES ('test', apr_sha1('testpwd'))
2223
.fi
2324
.PP
24-
2)
25+
\fBExample 2:\fR
26+
2527
.br
2628
.nf
2729
SELECT apr_sha1('testpwd') FROM SYSIBM.SYSDUMMY1
@@ -33,7 +35,8 @@ SELECT apr_sha1('testpwd') FROM SYSIBM.SYSDUMMY1
3335
1 record(s) selected.
3436
.fi
3537
.PP
36-
3)
38+
\fBExample 3:\fR
39+
3740
.br
3841
.nf
3942
CALL apr_sha1('testpwd', ?)
@@ -50,6 +53,6 @@ Written by Helmut K. C. Tessarek.
5053
.SH "BUGS"
5154
Hopefully none :-) But if you find one, please report it at:
5255
.br
53-
http://sourceforge.net/tracker/?func=add&group_id=103064&atid=633717
56+
http://sourceforge.net/p/mod-auth-ibmdb2/bugs
5457
.SH "WEB SITE"
5558
http://mod-auth-ibmdb2.sourceforge.net

man/man8/db2-hash-routines.8

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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"
22
.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
44
.SH SYNOPSIS
55
\fBUser Defined Functions:\fR
66
.PP
@@ -26,7 +26,7 @@ db2-auth-routines \- DB2 UDFs and SPs for encrypting passwords
2626
.PP
2727
>>-VALIDATE_PW--(--password--,--hash--,--is_valid--)-----------><
2828
.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.
3030
.TP
3131
\fBmd5( '\fR\fIcleartext\fR\fB' )\fR
3232
.RS 0
@@ -271,6 +271,6 @@ Written by Helmut K. C. Tessarek.
271271
.SH "BUGS"
272272
Hopefully none :-) But if you find one, please report it at:
273273
.br
274-
http://sourceforge.net/tracker/?func=add&group_id=103064&atid=633717
274+
http://sourceforge.net/p/mod-auth-ibmdb2/bugs
275275
.SH "WEB SITE"
276276
http://mod-auth-ibmdb2.sourceforge.net

man/man8/md5.8

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.TH md5 "8" "February 2013" "md5" "DB2 User Defined Function and Stored Procedure"
22
.SH NAME
3-
md5 \- DB2 UDF and SP to generate an md5 hash
3+
md5 \- DB2 UDF and SP to generate an MD5 hash
44
.SH SYNOPSIS
55
>>-MD5--(--expression--)---------------------------------------><
66
.PP

man/man8/mod_authnz_ibmdb2.8

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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"
22
.SH NAME
33
mod_authnz_ibmdb2 \- Apache authentication module for DB2
44
.SH DESCRIPTION
@@ -235,6 +235,6 @@ Written by Helmut K. C. Tessarek.
235235
.SH "BUGS"
236236
Hopefully none :-) But if you find one, please report it at:
237237
.br
238-
http://sourceforge.net/tracker/?func=add&group_id=103064&atid=633717
238+
http://sourceforge.net/p/mod-auth-ibmdb2/bugs
239239
.SH "WEB SITE"
240240
http://mod-auth-ibmdb2.sourceforge.net

0 commit comments

Comments
 (0)