Skip to content

Commit 0b0c782

Browse files
committed
Fix tabs
1 parent b031bf3 commit 0b0c782

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tls/src/main/java/org/bouncycastle/tls/crypto/impl/jcajce/JcaTlsCrypto.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ else if (NamedGroup.refersToASpecificFiniteField(namedGroup))
447447
}
448448
else if (NamedGroup.refersToASpecificKem(namedGroup))
449449
{
450-
return KemUtil.getAlgorithmParameters(this, NamedGroup.getKemName(namedGroup));
450+
return KemUtil.getAlgorithmParameters(this, NamedGroup.getKemName(namedGroup));
451451
}
452452

453453
throw new IllegalArgumentException("NamedGroup not supported: " + NamedGroup.getText(namedGroup));

tls/src/main/java/org/bouncycastle/tls/crypto/impl/jcajce/KemUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ static Cipher getCipher(JcaTlsCrypto crypto, String kemName)
4141
static boolean isKemSupported(JcaTlsCrypto crypto, String kemName)
4242
{
4343
// TODO[tls-kem] When implemented via provider, need to check for support dynamically
44-
// return kemName != null && getCipher(crypto, kemName) != null;
44+
// return kemName != null && getCipher(crypto, kemName) != null;
4545
return true;
4646
}
4747
}

0 commit comments

Comments
 (0)