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

com.prowidesoftware.swift.model.mx.dic.Algorithm6Code Maven / Gradle / Ivy


package com.prowidesoftware.swift.model.mx.dic;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for Algorithm6Code. * *

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

*

 * <simpleType name="Algorithm6Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="EA2C"/>
 *     <enumeration value="E3DC"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "Algorithm6Code") @XmlEnum public enum Algorithm6Code { /** * AES (Advanced Encryption Standard) CBC (Chaining Block Cypher) encryption with a 128 bits cryptographic key as defined by the Federal Information Processing Standards (FIPS 197 - November 6, 2001 - Advanced Encryption Standard). * */ @XmlEnumValue("EA2C") EA_2_C("EA2C"), /** * Triple DES (Data Encryption Standard) CBC (Chaining Block Cypher) encryption with double length key (112 Bit) as defined in FIPS PUB 46-3 - (ASN.1 Object Identifier: des-ede3-cbc). * */ @XmlEnumValue("E3DC") E_3_DC("E3DC"); private final String value; Algorithm6Code(String v) { value = v; } public String value() { return value; } public static Algorithm6Code fromValue(String v) { for (Algorithm6Code c: Algorithm6Code.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy