Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/sign/HmacSigner.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ component
var expectedSignature = sign( message );

// Compare the two binary values using a quick hash.
return( hash( signature ) == hash( expectedSignature ) );
return( hash( toString( signature ) ) == hash( toString( expectedSignature ) ) );

}

}
}