Subject: Re: Crypt::CBC problems?
To: None <jlam@jgrind.org>
From: None <sen_ml@eccosys.com>
List: tech-pkg
Date: 10/02/2001 15:06:51
From: Johnny Lam <jlam@jgrind.org>
Subject: Re: Crypt::CBC problems?
Date: Mon, 1 Oct 2001 22:47:43 -0700
> I believe MD5 is deprecated in favor of Digest::MD5.
I thought this might be it, but wanted to get confirmation.
> I think you need to modify your package to call the appropriate
> routines from Digest::MD5 in place of the MD5 routines.
p5-Crypt-CBC is not of my doing ;-)
$ grep MAINTAINER /usr/pkgsrc/security/p5-Crypt-CBC/Makefile
MAINTAINER= packages@netbsd.org
$ grep NetBSD /usr/pkgsrc/security/p5-Crypt-CBC/Makefile
# $NetBSD: Makefile,v 1.3 2001/02/17 17:49:58 wiz Exp $
My impression is that the upstream Crypt::CBC may need updating.
FWIW, the errors went away when I modified:
Makefile.PL - to look for Digest::MD5 instead of MD5
CBC.pm - "use MD5;" -> "use Digest::MD5"
I'm not sure if that's enough though.
Should I send a pr for this?