com.virgilsecurity.sdk.securechat.model.CardEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pfs Show documentation
Show all versions of pfs Show documentation
Virgil is a stack of security libraries (ECIES with Crypto Agility wrapped in Virgil Cryptogram) and all the necessary infrastructure to enable seamless, end-to-end encryption for any application, platform or device.
Learn about Virgil Java/Android SDK https://virgilsecurity.com/api-docs/java-android/quickstart
The newest version!
package com.virgilsecurity.sdk.securechat.model;
public class CardEntry {
private String identifier;
private byte[] publicKeyData;
/**
* Create new instance of {@link CardEntry}.
*
* @param identifier
* @param publicKeyData
*/
public CardEntry(String identifier, byte[] publicKeyData) {
super();
this.identifier = identifier;
this.publicKeyData = publicKeyData;
}
/**
* @return the identifier
*/
public String getIdentifier() {
return identifier;
}
/**
* @return the publicKeyData
*/
public byte[] getPublicKeyData() {
return publicKeyData;
}
/**
* @param identifier
* the identifier to set
*/
public void setIdentifier(String identifier) {
this.identifier = identifier;
}
/**
* @param publicKeyData
* the publicKeyData to set
*/
public void setPublicKeyData(byte[] publicKeyData) {
this.publicKeyData = publicKeyData;
}
}