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

gurux.dlms.objects.GXDLMSDataProtectionAgreedKey Maven / Gradle / Ivy

There is a newer version: 4.0.72
Show newest version
package gurux.dlms.objects;

/**
 * Data protection agreed key.
 */
public class GXDLMSDataProtectionAgreedKey {
    /**
     * Key parameters.
     */
    private byte[] parameters;

    /**
     * Key ciphered data.
     */
    private byte[] data;

    public final byte[] getParameters() {
        return parameters;
    }

    public final void setParameters(final byte[] value) {
        parameters = value;
    }

    /**
     * @return Key ciphered data.
     */
    public final byte[] getData() {
        return data;
    }

    /**
     * @param value
     *            Key ciphered data.
     */
    public final void setData(final byte[] value) {
        data = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy