⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hmac_sha1.java

📁 另一个使用java编写的加密通用算法包
💻 JAVA
字号:
// $Id: HMAC_SHA1.java,v 1.1 1998/01/12 04:17:51 hopwood Exp $//// $Log: HMAC_SHA1.java,v $// 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 SHA-1 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 $</b> * @author  David Hopwood * @since   Cryptix 3.0.3 */public class HMAC_SHA1extends HMAC{// Constructor//...........................................................................    public HMAC_SHA1() { super("SHA-1", 64); }}

⌨️ 快捷键说明

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