On 04/25/2011 05:15 PM, Andreas Gunnarsson wrote:
The problem described in [3] is due to key being stored as char, which may be signed. The code in [1] uses u_int8_t which is unsigned and therefore not sign extended. So [1] does not have this problem. /usr/src/sys/crypto/blf.c is also OK.Andreas
Ahh. Thanks to you and Miod for the explanations.

