File tree Expand file tree Collapse file tree 6 files changed +26
-20
lines changed Expand file tree Collapse file tree 6 files changed +26
-20
lines changed Original file line number Diff line number Diff line change 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
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"
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
1313The 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+ \fB Example 1: \fR
16+
1617.br
1718Inserting the user \fI test \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+ \fB Example 2: \fR
28+
2729.br
2830.nf
2931SELECT 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+ \fB Example 3: \fR
41+
3942.br
4043.nf
4144CALL apr_md5('testpwd', ?)
@@ -52,6 +55,6 @@ Written by Helmut K. C. Tessarek.
5255.SH "BUGS"
5356Hopefully 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"
5760http://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"
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
1313The 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+ \fB Example 1: \fR
16+
1617.br
1718Inserting the user \fI test \fR and the sha1 crypted clear text \fI testpwd \fR to the table \fI users \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+ \fB Example 2: \fR
26+
2527.br
2628.nf
2729SELECT 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+ \fB Example 3: \fR
39+
3740.br
3841.nf
3942CALL apr_sha1('testpwd', ?)
@@ -50,6 +53,6 @@ Written by Helmut K. C. Tessarek.
5053.SH "BUGS"
5154Hopefully 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"
5558http://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"
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\fB User 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\fB md5( ' \fR\fI cleartext \fR\fB ' ) \fR
3232.RS 0
@@ -271,6 +271,6 @@ Written by Helmut K. C. Tessarek.
271271.SH "BUGS"
272272Hopefully 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"
276276http://mod-auth-ibmdb2.sourceforge.net
Original file line number Diff line number Diff line change 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
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"
22.SH NAME
33mod_authnz_ibmdb2 \- Apache authentication module for DB2
44.SH DESCRIPTION
@@ -235,6 +235,6 @@ Written by Helmut K. C. Tessarek.
235235.SH "BUGS"
236236Hopefully 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"
240240http://mod-auth-ibmdb2.sourceforge.net
You can’t perform that action at this time.
0 commit comments