javax.xml.crypto.dsig.spec.HMACParameterSpec Java Examples

The following examples show how to use javax.xml.crypto.dsig.spec.HMACParameterSpec. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DOMHMACSignatureMethod.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
boolean paramsEqual(AlgorithmParameterSpec spec) {
    if (getParameterSpec() == spec) {
        return true;
    }
    if (!(spec instanceof HMACParameterSpec)) {
        return false;
    }
    HMACParameterSpec ospec = (HMACParameterSpec)spec;

    return (outputLength == ospec.getOutputLength());
}
 
Example #2
Source File: DOMHMACSignatureMethod.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
boolean paramsEqual(AlgorithmParameterSpec spec) {
    if (getParameterSpec() == spec) {
        return true;
    }
    if (!(spec instanceof HMACParameterSpec)) {
        return false;
    }
    HMACParameterSpec ospec = (HMACParameterSpec)spec;

    return (outputLength == ospec.getOutputLength());
}
 
Example #3
Source File: DOMHMACSignatureMethod.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
void checkParams(SignatureMethodParameterSpec params)
    throws InvalidAlgorithmParameterException
{
    if (params != null) {
        if (!(params instanceof HMACParameterSpec)) {
            throw new InvalidAlgorithmParameterException
                ("params must be of type HMACParameterSpec");
        }
        outputLength = ((HMACParameterSpec)params).getOutputLength();
        outputLengthSet = true;
        if (log.isLoggable(java.util.logging.Level.FINE)) {
            log.log(java.util.logging.Level.FINE, "Setting outputLength from HMACParameterSpec to: " + outputLength);
        }
    }
}
 
Example #4
Source File: DOMHMACSignatureMethod.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
SignatureMethodParameterSpec unmarshalParams(Element paramsElem)
    throws MarshalException
{
    outputLength = Integer.valueOf(paramsElem.getFirstChild().getNodeValue()).intValue();
    outputLengthSet = true;
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "unmarshalled outputLength: " + outputLength);
    }
    return new HMACParameterSpec(outputLength);
}
 
Example #5
Source File: DOMHMACSignatureMethod.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
boolean paramsEqual(AlgorithmParameterSpec spec) {
    if (getParameterSpec() == spec) {
        return true;
    }
    if (!(spec instanceof HMACParameterSpec)) {
        return false;
    }
    HMACParameterSpec ospec = (HMACParameterSpec)spec;

    return (outputLength == ospec.getOutputLength());
}
 
Example #6
Source File: DOMHMACSignatureMethod.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
void checkParams(SignatureMethodParameterSpec params)
    throws InvalidAlgorithmParameterException
{
    if (params != null) {
        if (!(params instanceof HMACParameterSpec)) {
            throw new InvalidAlgorithmParameterException
                ("params must be of type HMACParameterSpec");
        }
        outputLength = ((HMACParameterSpec)params).getOutputLength();
        outputLengthSet = true;
        if (log.isLoggable(java.util.logging.Level.FINE)) {
            log.log(java.util.logging.Level.FINE, "Setting outputLength from HMACParameterSpec to: " + outputLength);
        }
    }
}
 
Example #7
Source File: DOMHMACSignatureMethod.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
SignatureMethodParameterSpec unmarshalParams(Element paramsElem)
    throws MarshalException
{
    outputLength = Integer.valueOf(paramsElem.getFirstChild().getNodeValue()).intValue();
    outputLengthSet = true;
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "unmarshalled outputLength: " + outputLength);
    }
    return new HMACParameterSpec(outputLength);
}
 
Example #8
Source File: DOMHMACSignatureMethod.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
boolean paramsEqual(AlgorithmParameterSpec spec) {
    if (getParameterSpec() == spec) {
        return true;
    }
    if (!(spec instanceof HMACParameterSpec)) {
        return false;
    }
    HMACParameterSpec ospec = (HMACParameterSpec)spec;

    return (outputLength == ospec.getOutputLength());
}
 
Example #9
Source File: DOMHMACSignatureMethod.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
void checkParams(SignatureMethodParameterSpec params)
    throws InvalidAlgorithmParameterException
{
    if (params != null) {
        if (!(params instanceof HMACParameterSpec)) {
            throw new InvalidAlgorithmParameterException
                ("params must be of type HMACParameterSpec");
        }
        outputLength = ((HMACParameterSpec)params).getOutputLength();
        outputLengthSet = true;
        if (log.isLoggable(java.util.logging.Level.FINE)) {
            log.log(java.util.logging.Level.FINE, "Setting outputLength from HMACParameterSpec to: " + outputLength);
        }
    }
}
 
Example #10
Source File: DOMHMACSignatureMethod.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
SignatureMethodParameterSpec unmarshalParams(Element paramsElem)
    throws MarshalException
{
    outputLength = Integer.valueOf(paramsElem.getFirstChild().getNodeValue()).intValue();
    outputLengthSet = true;
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "unmarshalled outputLength: " + outputLength);
    }
    return new HMACParameterSpec(outputLength);
}
 
Example #11
Source File: DOMHMACSignatureMethod.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
SignatureMethodParameterSpec unmarshalParams(Element paramsElem)
    throws MarshalException
{
    outputLength = Integer.valueOf(paramsElem.getFirstChild().getNodeValue()).intValue();
    outputLengthSet = true;
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "unmarshalled outputLength: " + outputLength);
    }
    return new HMACParameterSpec(outputLength);
}
 
Example #12
Source File: DOMHMACSignatureMethod.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
void checkParams(SignatureMethodParameterSpec params)
    throws InvalidAlgorithmParameterException
{
    if (params != null) {
        if (!(params instanceof HMACParameterSpec)) {
            throw new InvalidAlgorithmParameterException
                ("params must be of type HMACParameterSpec");
        }
        outputLength = ((HMACParameterSpec)params).getOutputLength();
        outputLengthSet = true;
        if (log.isLoggable(java.util.logging.Level.FINE)) {
            log.log(java.util.logging.Level.FINE, "Setting outputLength from HMACParameterSpec to: " + outputLength);
        }
    }
}
 
Example #13
Source File: DOMHMACSignatureMethod.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
SignatureMethodParameterSpec unmarshalParams(Element paramsElem)
    throws MarshalException
{
    outputLength = Integer.valueOf(paramsElem.getFirstChild().getNodeValue()).intValue();
    outputLengthSet = true;
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "unmarshalled outputLength: " + outputLength);
    }
    return new HMACParameterSpec(outputLength);
}
 
Example #14
Source File: DOMHMACSignatureMethod.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
boolean paramsEqual(AlgorithmParameterSpec spec) {
    if (getParameterSpec() == spec) {
        return true;
    }
    if (!(spec instanceof HMACParameterSpec)) {
        return false;
    }
    HMACParameterSpec ospec = (HMACParameterSpec)spec;

    return (outputLength == ospec.getOutputLength());
}
 
Example #15
Source File: DOMHMACSignatureMethod.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
void checkParams(SignatureMethodParameterSpec params)
    throws InvalidAlgorithmParameterException
{
    if (params != null) {
        if (!(params instanceof HMACParameterSpec)) {
            throw new InvalidAlgorithmParameterException
                ("params must be of type HMACParameterSpec");
        }
        outputLength = ((HMACParameterSpec)params).getOutputLength();
        outputLengthSet = true;
        if (log.isLoggable(java.util.logging.Level.FINE)) {
            log.log(java.util.logging.Level.FINE, "Setting outputLength from HMACParameterSpec to: " + outputLength);
        }
    }
}
 
Example #16
Source File: DOMHMACSignatureMethod.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
SignatureMethodParameterSpec unmarshalParams(Element paramsElem)
    throws MarshalException
{
    outputLength = Integer.valueOf(paramsElem.getFirstChild().getNodeValue()).intValue();
    outputLengthSet = true;
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "unmarshalled outputLength: " + outputLength);
    }
    return new HMACParameterSpec(outputLength);
}
 
Example #17
Source File: DOMHMACSignatureMethod.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
boolean paramsEqual(AlgorithmParameterSpec spec) {
    if (getParameterSpec() == spec) {
        return true;
    }
    if (!(spec instanceof HMACParameterSpec)) {
        return false;
    }
    HMACParameterSpec ospec = (HMACParameterSpec)spec;

    return (outputLength == ospec.getOutputLength());
}
 
Example #18
Source File: DOMHMACSignatureMethod.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
void checkParams(SignatureMethodParameterSpec params)
    throws InvalidAlgorithmParameterException
{
    if (params != null) {
        if (!(params instanceof HMACParameterSpec)) {
            throw new InvalidAlgorithmParameterException
                ("params must be of type HMACParameterSpec");
        }
        outputLength = ((HMACParameterSpec)params).getOutputLength();
        outputLengthSet = true;
        if (log.isLoggable(java.util.logging.Level.FINE)) {
            log.log(java.util.logging.Level.FINE, "Setting outputLength from HMACParameterSpec to: " + outputLength);
        }
    }
}
 
Example #19
Source File: DOMHMACSignatureMethod.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
SignatureMethodParameterSpec unmarshalParams(Element paramsElem)
    throws MarshalException
{
    outputLength = Integer.valueOf(paramsElem.getFirstChild().getNodeValue()).intValue();
    outputLengthSet = true;
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "unmarshalled outputLength: " + outputLength);
    }
    return new HMACParameterSpec(outputLength);
}
 
Example #20
Source File: DOMHMACSignatureMethod.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
boolean paramsEqual(AlgorithmParameterSpec spec) {
    if (getParameterSpec() == spec) {
        return true;
    }
    if (!(spec instanceof HMACParameterSpec)) {
        return false;
    }
    HMACParameterSpec ospec = (HMACParameterSpec)spec;

    return (outputLength == ospec.getOutputLength());
}
 
Example #21
Source File: DOMHMACSignatureMethod.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
SignatureMethodParameterSpec unmarshalParams(Element paramsElem)
    throws MarshalException
{
    outputLength = Integer.valueOf(paramsElem.getFirstChild().getNodeValue()).intValue();
    outputLengthSet = true;
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "unmarshalled outputLength: " + outputLength);
    }
    return new HMACParameterSpec(outputLength);
}
 
Example #22
Source File: DOMHMACSignatureMethod.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
SignatureMethodParameterSpec unmarshalParams(Element paramsElem)
    throws MarshalException
{
    outputLength = Integer.valueOf(paramsElem.getFirstChild().getNodeValue()).intValue();
    outputLengthSet = true;
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "unmarshalled outputLength: " + outputLength);
    }
    return new HMACParameterSpec(outputLength);
}
 
Example #23
Source File: DOMHMACSignatureMethod.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
boolean paramsEqual(AlgorithmParameterSpec spec) {
    if (getParameterSpec() == spec) {
        return true;
    }
    if (!(spec instanceof HMACParameterSpec)) {
        return false;
    }
    HMACParameterSpec ospec = (HMACParameterSpec)spec;

    return (outputLength == ospec.getOutputLength());
}
 
Example #24
Source File: DOMHMACSignatureMethod.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
void checkParams(SignatureMethodParameterSpec params)
    throws InvalidAlgorithmParameterException
{
    if (params != null) {
        if (!(params instanceof HMACParameterSpec)) {
            throw new InvalidAlgorithmParameterException
                ("params must be of type HMACParameterSpec");
        }
        outputLength = ((HMACParameterSpec)params).getOutputLength();
        outputLengthSet = true;
        if (log.isLoggable(java.util.logging.Level.FINE)) {
            log.log(java.util.logging.Level.FINE, "Setting outputLength from HMACParameterSpec to: " + outputLength);
        }
    }
}
 
Example #25
Source File: DOMHMACSignatureMethod.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
SignatureMethodParameterSpec unmarshalParams(Element paramsElem)
    throws MarshalException
{
    outputLength = Integer.valueOf(paramsElem.getFirstChild().getNodeValue()).intValue();
    outputLengthSet = true;
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "unmarshalled outputLength: " + outputLength);
    }
    return new HMACParameterSpec(outputLength);
}
 
Example #26
Source File: DOMHMACSignatureMethod.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
boolean paramsEqual(AlgorithmParameterSpec spec) {
    if (getParameterSpec() == spec) {
        return true;
    }
    if (!(spec instanceof HMACParameterSpec)) {
        return false;
    }
    HMACParameterSpec ospec = (HMACParameterSpec)spec;

    return (outputLength == ospec.getOutputLength());
}
 
Example #27
Source File: DOMHMACSignatureMethod.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
void checkParams(SignatureMethodParameterSpec params)
    throws InvalidAlgorithmParameterException
{
    if (params != null) {
        if (!(params instanceof HMACParameterSpec)) {
            throw new InvalidAlgorithmParameterException
                ("params must be of type HMACParameterSpec");
        }
        outputLength = ((HMACParameterSpec)params).getOutputLength();
        outputLengthSet = true;
        if (log.isLoggable(java.util.logging.Level.FINE)) {
            log.log(java.util.logging.Level.FINE, "Setting outputLength from HMACParameterSpec to: " + outputLength);
        }
    }
}
 
Example #28
Source File: DOMHMACSignatureMethod.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
SignatureMethodParameterSpec unmarshalParams(Element paramsElem)
    throws MarshalException
{
    outputLength = Integer.valueOf(paramsElem.getFirstChild().getNodeValue()).intValue();
    outputLengthSet = true;
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "unmarshalled outputLength: " + outputLength);
    }
    return new HMACParameterSpec(outputLength);
}
 
Example #29
Source File: DOMHMACSignatureMethod.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
boolean paramsEqual(AlgorithmParameterSpec spec) {
    if (getParameterSpec() == spec) {
        return true;
    }
    if (!(spec instanceof HMACParameterSpec)) {
        return false;
    }
    HMACParameterSpec ospec = (HMACParameterSpec)spec;

    return (outputLength == ospec.getOutputLength());
}
 
Example #30
Source File: DOMHMACSignatureMethod.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
void checkParams(SignatureMethodParameterSpec params)
    throws InvalidAlgorithmParameterException
{
    if (params != null) {
        if (!(params instanceof HMACParameterSpec)) {
            throw new InvalidAlgorithmParameterException
                ("params must be of type HMACParameterSpec");
        }
        outputLength = ((HMACParameterSpec)params).getOutputLength();
        outputLengthSet = true;
        if (log.isLoggable(java.util.logging.Level.FINE)) {
            log.log(java.util.logging.Level.FINE, "Setting outputLength from HMACParameterSpec to: " + outputLength);
        }
    }
}