Skip to content

Commit c60079e

Browse files
committed
renaming file
1 parent 4c930cc commit c60079e

File tree

4 files changed

+26
-17
lines changed

4 files changed

+26
-17
lines changed

man/man8/apr_crypt.8

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH apr_crypt "8" "June 2012" "apr_crypt" "DB2 User Defined Function and Stored Procedure"
1+
.TH apr_crypt "8" "February 2013" "apr_crypt" "DB2 User Defined Function and Stored Procedure"
22
.SH NAME
33
apr_crypt \- DB2 UDF and SP for encrypting passwords
44
.SH SYNOPSIS
@@ -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(13). 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 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_crypt('testpwd'))
2223
.fi
2324
.PP
24-
2)
25+
\fBExample 2:\fR
26+
2527
.br
2628
.nf
2729
SELECT apr_crypt('testpwd') FROM SYSIBM.SYSDUMMY1
@@ -33,7 +35,8 @@ cqs7uOvz8KBlk
3335
1 record(s) selected.
3436
.fi
3537
.PP
36-
3)
38+
\fBExample 3:\fR
39+
3740
.br
3841
.nf
3942
CALL apr_crypt('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
File renamed without changes.

man/man8/md5.8

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.TH md5 "8" "June 2012" "md5" "DB2 User Defined Function and Stored Procedure"
1+
.TH md5 "8" "February 2013" "md5" "DB2 User Defined Function and Stored Procedure"
22
.SH NAME
3-
md5 \- DB2 UDF and SP for encrypting passwords
3+
md5 \- DB2 UDF and SP to generate an md5 hash
44
.SH SYNOPSIS
55
>>-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(32). 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 md5 hash of the clear text \fItestpwd\fR to the table \fIusers\fR.
1819
.PP
@@ -21,7 +22,8 @@ INSERT INTO USERS (username, password)
2122
VALUES ('test', md5('testpwd'))
2223
.fi
2324
.PP
24-
2)
25+
\fBExample 2:\fR
26+
2527
.br
2628
.nf
2729
SELECT md5( 'testpwd' ) FROM SYSIBM.SYSDUMMY1
@@ -33,7 +35,8 @@ SELECT md5( '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 md5('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/validate_pw.8

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.TH validate_pw "8" "June 2012" "validate_pw" "DB2 User Defined Function and Stored Procedure"
1+
.TH validate_pw "8" "February 2013" "validate_pw" "DB2 User Defined Function and Stored Procedure"
22
.SH NAME
3-
validate_pw \- DB2 UDF and SP for validating a password against a hash
3+
validate_pw \- DB2 UDF and SP to validate a password against a hash
44
.SH SYNOPSIS
55
>>-VALIDATE_PW--(--password--,--hash--)------------------------><
66
.PP
@@ -13,7 +13,8 @@ empty, otherwise an SQLSTATE 39701 is returned.
1313
.PP
1414
The result of the routine is an INTEGER. If the password is valid, 1 is returned. If the password is not valid, 0 is returned. The result can be null; if the argument is null, the result is the null value.
1515
.SH EXAMPLES
16-
1)
16+
\fBExample 1:\fR
17+
1718
.br
1819
Validating the password \fItestpwd\fR against the crypt hash \fIcqs7uOvz8KBlk\fR.
1920
.PP
@@ -27,7 +28,8 @@ SELECT validate_pw('testpwd', 'cqs7uOvz8KBlk') FROM SYSIBM.SYSDUMMY1"
2728
1 record(s) selected.
2829
.fi
2930
.PP
30-
2)
31+
\fBExample 2:\fR
32+
3133
.br
3234
.nf
3335
CALL validate_pw('testpwd', 'cqs7uOvz8KBlk', ?)
@@ -40,7 +42,8 @@ CALL validate_pw('testpwd', 'cqs7uOvz8KBlk', ?)
4042
Return Status = 0
4143
.fi
4244
.PP
43-
3)
45+
\fBExample 3:\fR
46+
4447
.br
4548
.nf
4649
CALL validate_pw('testpwd', '0123456789abcdef', ?)
@@ -57,6 +60,6 @@ Written by Helmut K. C. Tessarek.
5760
.SH "BUGS"
5861
Hopefully none :-) But if you find one, please report it at:
5962
.br
60-
http://sourceforge.net/tracker/?func=add&group_id=103064&atid=633717
63+
http://sourceforge.net/p/mod-auth-ibmdb2/bugs
6164
.SH "WEB SITE"
6265
http://mod-auth-ibmdb2.sourceforge.net

0 commit comments

Comments
 (0)