All Downloads are FREE. Search and download functionalities are using the official Maven repository.

oasis.names.tc.opendocument.xmlns.manifest._1.KeyDerivation Maven / Gradle / Ivy

Go to download

Generic implementation of ASiC-E archives in accordance with ETSI 102 918 v1.3.1.

There is a newer version: 0.12.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.04.07 at 02:26:28 PM CEST 
//


package oasis.names.tc.opendocument.xmlns.manifest._1;

import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attGroup ref="{urn:oasis:names:tc:opendocument:xmlns:manifest:1.0}key-derivation-attlist"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "key-derivation") public class KeyDerivation { @XmlAttribute(name = "key-derivation-name", namespace = "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0", required = true) protected String keyDerivationName; @XmlAttribute(name = "salt", namespace = "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0", required = true) protected byte[] salt; @XmlAttribute(name = "iteration-count", namespace = "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0", required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger iterationCount; /** * Gets the value of the keyDerivationName property. * * @return * possible object is * {@link String } * */ public String getKeyDerivationName() { return keyDerivationName; } /** * Sets the value of the keyDerivationName property. * * @param value * allowed object is * {@link String } * */ public void setKeyDerivationName(String value) { this.keyDerivationName = value; } /** * Gets the value of the salt property. * * @return * possible object is * byte[] */ public byte[] getSalt() { return salt; } /** * Sets the value of the salt property. * * @param value * allowed object is * byte[] */ public void setSalt(byte[] value) { this.salt = value; } /** * Gets the value of the iterationCount property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getIterationCount() { return iterationCount; } /** * Sets the value of the iterationCount property. * * @param value * allowed object is * {@link BigInteger } * */ public void setIterationCount(BigInteger value) { this.iterationCount = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy