1 4 7 package javax.xml.crypto.dsig.spec; 8 9 import javax.xml.crypto.dsig.SignatureMethod; 10 11 32 public final class HMACParameterSpec implements SignatureMethodParameterSpec { 33 34 private int outputLength; 35 36 42 public HMACParameterSpec(int outputLength) { 43 this.outputLength = outputLength; 44 } 45 46 51 public int getOutputLength() { 52 return outputLength; 53 } 54 } 55 | Popular Tags |