issue_872: Finished cleaning up checkstyle errors in code, ready for PR.

This commit is contained in:
TheSilentCoder 2025-01-14 12:06:29 -05:00
parent 1bc9affcf1
commit 1123af6f29
5 changed files with 4 additions and 5 deletions

View File

@ -15,7 +15,7 @@ import java.util.Arrays;
public class IdentityResponseEnvelope implements Struct {
/**
* the asymmetric contents block size
* the asymmetric contents block size.
*/
@Getter
@StructElementLength(fieldName = "asymmetricContents")

View File

@ -41,7 +41,7 @@ public class AsymmetricPublicKey implements Struct {
public static final short DEFAULT_RSA_SIGNATURE_SCHEME = 0x1;
/**
* information regarding this key
* information regarding this key.
*/
private AsymmetricKeyParams asymmetricKeyParams;

View File

@ -14,7 +14,7 @@ import lombok.Getter;
public class PublicKey implements Struct {
/**
* information regarding this key
* information regarding this key.
*/
private AsymmetricKeyParams asymmetricKeyParams;

View File

@ -13,7 +13,6 @@ import java.util.Arrays;
*/
@StructElements(elements = {"keyLength", "key"})
public class StorePubKey implements Struct {
@Getter
@StructElementLength(fieldName = "key")
private int keyLength;

View File

@ -25,7 +25,7 @@ public class SymmetricKey implements Struct {
public static final short SCHEME_CBC = 255;
/**
* of the symmetric key
* algorithm id of the symmetric key.
*/
@Getter
private int algorithmId;