?? hmac_haval.java
字號:
// $Id: HMAC_HAVAL.java,v 1.1.1.1 2002/08/27 12:32:11 grosbois Exp $//// $Log: HMAC_HAVAL.java,v $// Revision 1.1.1.1 2002/08/27 12:32:11 grosbois// Add cryptix 3.2//// Revision 1.1 1998/01/12 04:17:51 hopwood// + HMAC rewrite.//// Revision 0.1.0 1998/01/04 hopwood// + Original version.//// $Endlog$/* * Copyright (c) 1995-97 Systemics Ltd * on behalf of the Cryptix Development Team. All rights reserved. */package cryptix.provider.mac;/** * A class to implement the HMAC message authentication code, as described in * RFC 2104, with the HAVAL digest algorithm. * <p> * <b>Copyright</b> © 1997 * <a href="http://www.systemics.com/">Systemics Ltd</a> on behalf of the * <a href="http://www.systemics.com/docs/cryptix/">Cryptix Development Team</a>. * <br>All rights reserved. * <p> * <b>$Revision: 1.1.1.1 $</b> * @author David Hopwood * @since Cryptix 3.0.3 */public class HMAC_HAVALextends HMAC{// Constructor//........................................................................... public HMAC_HAVAL() { super("HAVAL", 128); }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -