?? hmac_sha1.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> © 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 + -