From b387bcdbb1b1c6b01a83c5831990a7f367065a04 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se>
Date: Wed, 22 Jul 1998 08:14:36 +0200
Subject: [PATCH] Bug fix to pkcs_digest() (earlier checked in on the wrong
 branch).

Rev: lib/modules/Crypto/hmac.pike:1.4
---
 lib/modules/Crypto/hmac.pike | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/modules/Crypto/hmac.pike b/lib/modules/Crypto/hmac.pike
index f4a3be6678..0bbf0dd073 100644
--- a/lib/modules/Crypto/hmac.pike
+++ b/lib/modules/Crypto/hmac.pike
@@ -24,7 +24,7 @@ string raw_hash(string s)
 
 string pkcs_digest(string s)
 {
-  return Standards.PKCS.Signature.build_digestinfo(s, H());
+  return Crypto.Signature.build_digestinfo(s, H());
 }
 
 class `()
-- 
GitLab