diff --git a/powerauth-java-crypto/src/main/java/io/getlime/security/powerauth/crypto/lib/encryptor/ecies/model/EciesPayload.java b/powerauth-java-crypto/src/main/java/io/getlime/security/powerauth/crypto/lib/encryptor/ecies/model/EciesPayload.java index 704ce8dec..6bc50f71c 100644 --- a/powerauth-java-crypto/src/main/java/io/getlime/security/powerauth/crypto/lib/encryptor/ecies/model/EciesPayload.java +++ b/powerauth-java-crypto/src/main/java/io/getlime/security/powerauth/crypto/lib/encryptor/ecies/model/EciesPayload.java @@ -32,7 +32,7 @@ public class EciesPayload { EciesParameters parameters; /** - * Constructor for V3.1 protocol version ECIES structure. + * Constructor for V3.0 and V3.1 protocol versions of ECIES structure. * @param ephemeralPublicKey Ephemeral public key. * @param mac Message authentication code. * @param encryptedData Encrypted data. @@ -44,7 +44,7 @@ public EciesPayload(byte[] ephemeralPublicKey, byte[] mac, byte[] encryptedData, } /** - * Constructor for V3.2 protocol version ECIES structure. + * Constructor for V3.2 protocol version of ECIES structure. * @param ephemeralPublicKey Ephemeral public key. * @param mac Message authentication code. * @param encryptedData Encrypted data.