Back to project page amanaje.
The source code is released under:
Apache License
If you think the Android project amanaje listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.amanaje.entities; /*from ww w. j a v a 2s . c o m*/ public class CryptoAlgoEntity { private String algoName = null; private String algoInstance = null; private int ivLength = 0; public String getAlgoName() { return algoName; } public void setAlgoName(String algoName) { this.algoName = algoName; } public String getAlgoInstance() { return algoInstance; } public void setAlgoInstance(String algoInstance) { this.algoInstance = algoInstance; } public int getIvLength() { return ivLength; } public void setIvLength(int ivLength) { this.ivLength = ivLength; } public CryptoAlgoEntity(String algoName, String algoInstance, int ivLength) { super(); this.algoName = algoName; this.algoInstance = algoInstance; this.ivLength = ivLength; } }