Skip to content

Commit

Permalink
[WSS-709]Add more setter methods for AlgorithmSuite
Browse files Browse the repository at this point in the history
  • Loading branch information
ffang committed Jan 25, 2024
1 parent 7ab6a7e commit c78b302
Showing 1 changed file with 48 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -402,26 +402,50 @@ public String getName() {
public String getDigest() {
return digest;
}

public void setDigest(String digest) {
this.digest = digest;
}

public String getEncryption() {
return encryption;
}

public void setEncryption(String encryption) {
this.encryption = encryption;
}

public String getSymmetricKeyWrap() {
return symmetricKeyWrap;
}

public void setSymmetricKeyWrap(String symmetricKeyWrap) {
this.symmetricKeyWrap = symmetricKeyWrap;
}

public String getAsymmetricKeyWrap() {
return asymmetricKeyWrap;
}

public void setAsymmetricKeyWrap(String asymmetricKeyWrap) {
this.asymmetricKeyWrap = asymmetricKeyWrap;
}

public String getEncryptionKeyDerivation() {
return encryptionKeyDerivation;
}

public void setEncryptionKeyDerivation(String encryptionKeyDerivation) {
this.encryptionKeyDerivation = encryptionKeyDerivation;
}

public String getSignatureKeyDerivation() {
return signatureKeyDerivation;
}

public void setSignatureKeyDerivation(String signatureKeyDerivation) {
this.signatureKeyDerivation = signatureKeyDerivation;
}

public String getSymmetricSignature() {
return symmetricSignature;
Expand All @@ -442,26 +466,50 @@ public void setAsymmetricSignature(String asymmetricSignature) {
public int getEncryptionDerivedKeyLength() {
return encryptionDerivedKeyLength;
}

public void getEncryptionDerivedKeyLength(int encryptionDerivedKeyLength) {
this.encryptionDerivedKeyLength = encryptionDerivedKeyLength;
}

public int getSignatureDerivedKeyLength() {
return signatureDerivedKeyLength;
}

public void setSignatureDerivedKeyLength(int signatureDerivedKeyLength) {
this.signatureDerivedKeyLength = signatureDerivedKeyLength;
}

public int getMinimumSymmetricKeyLength() {
return minimumSymmetricKeyLength;
}

public void setMinimumSymmetricKeyLength(int minimumSymmetricKeyLength) {
this.minimumSymmetricKeyLength = minimumSymmetricKeyLength;
}

public int getMaximumSymmetricKeyLength() {
return maximumSymmetricKeyLength;
}

public void setMaximumSymmetricKeyLength(int maximumSymmetricKeyLength) {
this.maximumSymmetricKeyLength = maximumSymmetricKeyLength;
}

public int getMinimumAsymmetricKeyLength() {
return minimumAsymmetricKeyLength;
}

public void setMinimumAsymmetricKeyLength(int minimumAsymmetricKeyLength) {
this.minimumAsymmetricKeyLength = minimumAsymmetricKeyLength;
}

public int getMaximumAsymmetricKeyLength() {
return maximumAsymmetricKeyLength;
}

public void setMaximumAsymmetricKeyLength(int maximumAsymmetricKeyLength) {
this.maximumAsymmetricKeyLength = maximumAsymmetricKeyLength;
}

public void setNamespace(String ns) {
this.ns = ns;
Expand Down

0 comments on commit c78b302

Please sign in to comment.