dsaparams.java
来自「JAVA基本类源代码,大家可以学习学习!」· Java 代码 · 共 48 行
JAVA
48 行
/* * @(#)DSAParams.java 1.19 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.security.interfaces;import java.math.BigInteger;/** * Interface to a DSA-specific set of key parameters, which defines a * DSA <em>key family</em>. DSA (Digital Signature Algorithm) is defined * in NIST's FIPS-186. * * @see DSAKey * @see java.security.Key * @see java.security.Signature * * @version 1.19 03/01/23 * @author Benjamin Renaud * @author Josh Bloch */public interface DSAParams { /** * Returns the prime, <code>p</code>. * * @return the prime, <code>p</code>. */ public BigInteger getP(); /** * Returns the subprime, <code>q</code>. * * @return the subprime, <code>q</code>. */ public BigInteger getQ(); /** * Returns the base, <code>g</code>. * * @return the base, <code>g</code>. */ public BigInteger getG();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?