]> git.sur5r.net Git - openldap/commitdiff
Use provided macros and comment
authorKurt Zeilenga <kurt@openldap.org>
Sat, 3 Jun 2000 17:24:21 +0000 (17:24 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Sat, 3 Jun 2000 17:24:21 +0000 (17:24 +0000)
libraries/liblutil/authpasswd.c
libraries/liblutil/ntservice.c
libraries/liblutil/passwd.c

index 7546650271e73c5a05c353b10e23ab80de268a85..1fc4d74c71b2488207daa65497f0c67fd1fbb149 100644 (file)
@@ -823,7 +823,7 @@ static struct berval *hash_sha1(
        const struct berval  *passwd )
 {
        lutil_SHA1_CTX  SHA1context;
-       unsigned char   SHA1digest[20];
+       unsigned char   SHA1digest[LUTIL_SHA1_BYTES];
        struct berval digest;
        digest.bv_val = SHA1digest;
        digest.bv_len = sizeof(SHA1digest);
@@ -841,7 +841,7 @@ static struct berval *hash_smd5(
        const struct berval  *passwd )
 {
        lutil_MD5_CTX   MD5context;
-       unsigned char   MD5digest[16];
+       unsigned char   MD5digest[LUTIL_MD5_BYTES];
        unsigned char   saltdata[4];
        struct berval digest;
        struct berval salt;
@@ -870,7 +870,7 @@ static struct berval *hash_md5(
        const struct berval  *passwd )
 {
        lutil_MD5_CTX   MD5context;
-       unsigned char   MD5digest[16];
+       unsigned char   MD5digest[LUTIL_MD5_BYTES];
 
        struct berval digest;
 
index 47f52e49b7bb95c94ac0597ca543fadcf033f977..45f6e8adb4d8710a8812f295995853a5fee23aca 100644 (file)
@@ -3,7 +3,12 @@
  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
-/* ntservice.c */
+
+/*
+ * NT Service manager utilities for OpenLDAP services
+ *     these should NOT be slapd specific, but are
+ */
+
 #include "portable.h"
 
 #ifdef HAVE_NT_SERVICE_MANAGER
index a963dd28c4910fe887e8e805d38b060edb5b6d12..becde0e6c540b5f66898a054280959c3243e3297 100644 (file)
@@ -942,7 +942,7 @@ static struct berval *hash_sha1(
        const struct berval  *passwd )
 {
        lutil_SHA1_CTX  SHA1context;
-       unsigned char   SHA1digest[20];
+       unsigned char   SHA1digest[LUTIL_SHA1_BYTES];
        struct berval digest;
        digest.bv_val = SHA1digest;
        digest.bv_len = sizeof(SHA1digest);
@@ -960,7 +960,7 @@ static struct berval *hash_smd5(
        const struct berval  *passwd )
 {
        lutil_MD5_CTX   MD5context;
-       unsigned char   MD5digest[16];
+       unsigned char   MD5digest[LUTIL_MD5_BYTES];
        unsigned char   saltdata[4];
        struct berval digest;
        struct berval salt;
@@ -989,7 +989,7 @@ static struct berval *hash_md5(
        const struct berval  *passwd )
 {
        lutil_MD5_CTX   MD5context;
-       unsigned char   MD5digest[16];
+       unsigned char   MD5digest[LUTIL_MD5_BYTES];
 
        struct berval digest;