hmac_ripemd128.java

来自「jpeg2000编解码」· Java 代码 · 共 43 行

JAVA
43
字号
// $Id: HMAC_RIPEMD128.java,v 1.1.1.1 2002/08/27 12:32:11 grosbois Exp $//// $Log: HMAC_RIPEMD128.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 RIPEMD128 digest algorithm. * <p> * <b>Copyright</b> &copy; 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_RIPEMD128extends HMAC{// Constructor//...........................................................................    public HMAC_RIPEMD128() { super("RIPEMD128", 64); }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?