Bläddra i källkod

Remove obsolete gen_ha1.

The tool gen_ha1 is not needed anymore. It was used by an old version
of the script serctl. The same functionality can be achieved by other
means either on the command line or in MySQL with server-side commands.
Jan Janak 16 år sedan
förälder
incheckning
e79a572382
6 ändrade filer med 2 tillägg och 269 borttagningar
  1. 2 2
      Makefile
  2. 0 2
      utils/gen_ha1/.cvsignore
  3. 0 13
      utils/gen_ha1/Makefile
  4. 0 139
      utils/gen_ha1/calc.c
  5. 0 62
      utils/gen_ha1/calc.h
  6. 0 51
      utils/gen_ha1/gen_ha1.c

+ 2 - 2
Makefile

@@ -341,10 +341,10 @@ cmodules=$(foreach mods,$(modules_dirs), $($(mods)))
 
 
 # list of utils directories that should be compiled by make utils
-C_COMPILE_UTILS=	utils/gen_ha1 utils/sercmd
+C_COMPILE_UTILS=	utils/sercmd
 # list of binaries that should be installed alongside
 # (they should be created after make utils, see C_COMPILE_UTILS)
-C_INSTALL_BIN=	utils/gen_ha1/gen_ha1 # sercmd is now installed by ctl
+C_INSTALL_BIN=	# sercmd is now installed by ctl
 
 # which utils know to install themselves and should be installed
 # along the core (list of utils directories)

+ 0 - 2
utils/gen_ha1/.cvsignore

@@ -1,2 +0,0 @@
-gen_ha1
-

+ 0 - 13
utils/gen_ha1/Makefile

@@ -1,13 +0,0 @@
-# $Id$
-#
-#  gen_ha1 Makefile
-# 
-
-include ../../Makefile.defs
-
-auto_gen=
-NAME=gen_ha1
-LIBS=../../md5.o
-
-
-include ../../Makefile.utils

+ 0 - 139
utils/gen_ha1/calc.c

@@ -1,139 +0,0 @@
-/*
- * $Id$
- *
- * Copyright (C) 2001-2003 FhG Fokus
- *
- * This file is part of ser, a free SIP server.
- *
- * ser is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version
- *
- * For a license to use the ser software under conditions
- * other than those described here, or to purchase support for this
- * software, please contact iptel.org by e-mail at the following addresses:
- *    [email protected]
- *
- * ser is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License 
- * along with this program; if not, write to the Free Software 
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- */
-
-
-#include <sys/types.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include "calc.h"
-#include "../../md5global.h"
-#include "../../md5.h"
-
-
-void CvtHex(HASH Bin, HASHHEX Hex)
-{
-	unsigned short i;
-	unsigned char j;
-    
-	for (i = 0; i < HASHLEN; i++) {
-		j = (Bin[i] >> 4) & 0xf;
-		if (j <= 9)
-			Hex[i*2] = (j + '0');
-		else
-			Hex[i*2] = (j + 'a' - 10);
-		j = Bin[i] & 0xf;
-		if (j <= 9)
-			Hex[i*2+1] = (j + '0');
-		else
-			Hex[i*2+1] = (j + 'a' - 10);
-	};
-	Hex[HASHHEXLEN] = '\0';
-}
-
-
-/* 
- * calculate H(A1) as per spec 
- */
-void DigestCalcHA1(const char * pszAlg, const char * pszUserName,
-		   const char * pszRealm, const char * pszPassword,
-		   const char * pszNonce, const char * pszCNonce,
-		   HASHHEX SessionKey)
-{
-	MD5_CTX Md5Ctx;
-	HASH HA1;
-	
-	MD5Init(&Md5Ctx);
-	MD5Update(&Md5Ctx, pszUserName, strlen(pszUserName));
-	MD5Update(&Md5Ctx, ":", 1);
-	MD5Update(&Md5Ctx, pszRealm, strlen(pszRealm));
-	MD5Update(&Md5Ctx, ":", 1);
-	MD5Update(&Md5Ctx, pszPassword, strlen(pszPassword));
-	MD5Final(HA1, &Md5Ctx);
-	if (strcmp(pszAlg, "md5-sess") == 0) {
-		MD5Init(&Md5Ctx);
-		MD5Update(&Md5Ctx, HA1, HASHLEN);
-		MD5Update(&Md5Ctx, ":", 1);
-		MD5Update(&Md5Ctx, pszNonce, strlen(pszNonce));
-		MD5Update(&Md5Ctx, ":", 1);
-		MD5Update(&Md5Ctx, pszCNonce, strlen(pszCNonce));
-		MD5Final(HA1, &Md5Ctx);
-	};
-	CvtHex(HA1, SessionKey);
-}
-
-
-/* 
- * calculate request-digest/response-digest as per HTTP Digest spec 
- */
-void DigestCalcResponse(
-			HASHHEX HA1,                 /* H(A1) */
-			const char * pszNonce,       /* nonce from server */
-			const char * pszNonceCount,  /* 8 hex digits */
-			const char * pszCNonce,      /* client nonce */
-			const char * pszQop,         /* qop-value: "", "auth", "auth-int" */
-			const char * pszMethod,      /* method from the request */
-			const char * pszDigestUri,   /* requested URL */
-			HASHHEX HEntity,             /* H(entity body) if qop="auth-int" */
-			HASHHEX Response             /* request-digest or response-digest */)
-{
-	MD5_CTX Md5Ctx;
-	HASH HA2;
-	HASH RespHash;
-	HASHHEX HA2Hex;
-	
-	     /* calculate H(A2) */
-	MD5Init(&Md5Ctx);
-	MD5Update(&Md5Ctx, pszMethod, strlen(pszMethod));
-	MD5Update(&Md5Ctx, ":", 1);
-	MD5Update(&Md5Ctx, pszDigestUri, strlen(pszDigestUri));
-	if (strcmp(pszQop, "auth-int") == 0) {
-		MD5Update(&Md5Ctx, ":", 1);
-		MD5Update(&Md5Ctx, HEntity, HASHHEXLEN);
-	};
-	MD5Final(HA2, &Md5Ctx);
-	CvtHex(HA2, HA2Hex);
-	
-	     /* calculate response */
-	MD5Init(&Md5Ctx);
-	MD5Update(&Md5Ctx, HA1, HASHHEXLEN);
-	MD5Update(&Md5Ctx, ":", 1);
-	MD5Update(&Md5Ctx, pszNonce, strlen(pszNonce));
-	MD5Update(&Md5Ctx, ":", 1);
-	if (*pszQop) {
-		MD5Update(&Md5Ctx, pszNonceCount, strlen(pszNonceCount));
-		MD5Update(&Md5Ctx, ":", 1);
-		MD5Update(&Md5Ctx, pszCNonce, strlen(pszCNonce));
-		MD5Update(&Md5Ctx, ":", 1);
-		MD5Update(&Md5Ctx, pszQop, strlen(pszQop));
-		MD5Update(&Md5Ctx, ":", 1);
-	};
-	MD5Update(&Md5Ctx, HA2Hex, HASHHEXLEN);
-	MD5Final(RespHash, &Md5Ctx);
-	CvtHex(RespHash, Response);
-}
-

+ 0 - 62
utils/gen_ha1/calc.h

@@ -1,62 +0,0 @@
-/*
- * $Id$
- *
- * Copyright (C) 2001-2003 FhG Fokus
- *
- * This file is part of ser, a free SIP server.
- *
- * ser is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version
- *
- * For a license to use the ser software under conditions
- * other than those described here, or to purchase support for this
- * software, please contact iptel.org by e-mail at the following addresses:
- *    [email protected]
- *
- * ser is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License 
- * along with this program; if not, write to the Free Software 
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- */
-
-
-#ifndef CALC_H
-#define CALC_H
-
-
-#define HASHLEN 16
-typedef char HASH[HASHLEN];
-
-
-#define HASHHEXLEN 32
-typedef char HASHHEX[HASHHEXLEN+1];
-
-
-void CvtHex(HASH Bin, HASHHEX Hex);
-
-/* 
- * calculate H(A1) as per HTTP Digest spec 
- */
-void DigestCalcHA1(const char * pszAlg, const char * pszUserName, const char * pszRealm,
-		   const char * pszPassword, const char * pszNonce, const char * pszCNonce,
-		   HASHHEX SessionKey);
-
-/* calculate request-digest/response-digest as per HTTP Digest spec */
-void DigestCalcResponse(HASHHEX HA1,           /* H(A1) */
-			const char * pszNonce,       /* nonce from server */
-			const char * pszNonceCount,  /* 8 hex digits */
-			const char * pszCNonce,      /* client nonce */
-			const char * pszQop,         /* qop-value: "", "auth", "auth-int" */
-			const char * pszMethod,      /* method from the request */
-			const char * pszDigestUri,   /* requested URL */
-			HASHHEX HEntity,       /* H(entity body) if qop="auth-int" */
-			HASHHEX Response      /* request-digest or response-digest */);
-
-
-#endif

+ 0 - 51
utils/gen_ha1/gen_ha1.c

@@ -1,51 +0,0 @@
-/*
- * $Id$
- *
- * Copyright (C) 2001-2003 FhG Fokus
- *
- * This file is part of ser, a free SIP server.
- *
- * ser is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version
- *
- * For a license to use the ser software under conditions
- * other than those described here, or to purchase support for this
- * software, please contact iptel.org by e-mail at the following addresses:
- *    [email protected]
- *
- * ser is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License 
- * along with this program; if not, write to the Free Software 
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- */
-
-
-#include <stdio.h>
-#include <stdlib.h>
-#include "../../md5global.h"
-#include "../../md5.h"
-#include "calc.h"
-
-
-
-int main(int argc, char** argv)
-{
-	HASHHEX ha1;
-
-	if (argc != 4) {
-		printf("Usage: gen_ha1 <username> <realm> <password> \n");
-		/* return EXIT_SUCCESS; -jku */
-		return 1;
-	}
-
-	DigestCalcHA1("md5", argv[1], argv[2], argv[3], "", "", ha1);
-	printf("%s\n", ha1);
-	
-	return 0; /* jku */
-}