From 75dad9f5ac886f510990be314335b84756de3aa6 Mon Sep 17 00:00:00 2001 From: wassa Date: Fri, 29 Apr 2005 05:05:21 +0000 Subject: [PATCH] Clarity change requested by Derek Morr. git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/trunk@1427 ab3bd59b-922f-494d-bb5f-6f0a3c29deca --- .../middleware/shibboleth/common/provider/CryptoShibHandle.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/edu/internet2/middleware/shibboleth/common/provider/CryptoShibHandle.java b/src/edu/internet2/middleware/shibboleth/common/provider/CryptoShibHandle.java index 06737ee..a94941a 100644 --- a/src/edu/internet2/middleware/shibboleth/common/provider/CryptoShibHandle.java +++ b/src/edu/internet2/middleware/shibboleth/common/provider/CryptoShibHandle.java @@ -431,8 +431,8 @@ class HMACHandleEntry extends HandleEntry { public byte[] getMAC(Mac mac) { - mac.update(principal.getName().getBytes()); mac.update(getLongBytes(expirationTime)); + mac.update(principal.getName().getBytes()); return mac.doFinal(); } -- 1.7.10.4