javax.xml.crypto.dsig.spec.HMACParameterSpec Maven / Gradle / Ivy
/* */ package javax.xml.crypto.dsig.spec;
/* */
/* */ public final class HMACParameterSpec
/* */ implements SignatureMethodParameterSpec
/* */ {
/* */ private int outputLength;
/* */
/* */ public HMACParameterSpec(int outputLength)
/* */ {
/* 42 */ this.outputLength = outputLength;
/* */ }
/* */
/* */ public int getOutputLength()
/* */ {
/* 51 */ return this.outputLength;
/* */ }
/* */ }
/* Location: E:\HYN\Java\trunk\ref\lib-dep\xmldsig\xmldsig.jar
* Qualified Name: javax.xml.crypto.dsig.spec.HMACParameterSpec
* JD-Core Version: 0.6.2
*/