-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For improved binary compatibility with 0.4.0
- Loading branch information
Showing
3 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
ssl-config-core/src/main/scala/com/typesafe/sslconfig/ssl/AlgorithmChecker.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* | ||
* Copyright (C) 2015 - 2020 Lightbend Inc. <https://www.lightbend.com> | ||
*/ | ||
|
||
package com.typesafe.sslconfig.ssl | ||
|
||
import javax.security.cert.X509Certificate | ||
|
||
import com.typesafe.sslconfig.util.LoggerFactory | ||
|
||
@deprecated("not operative", "0.5.0") | ||
class AlgorithmChecker(mkLogger: LoggerFactory, val signatureConstraints: Set[AlgorithmConstraint], val keyConstraints: Set[AlgorithmConstraint]) { | ||
def checkKeyAlgorithms(x509Cert: X509Certificate): Unit = () | ||
} |
14 changes: 14 additions & 0 deletions
14
ssl-config-core/src/main/scala/com/typesafe/sslconfig/ssl/Algorithms.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* | ||
* Copyright (C) 2015 - 2020 Lightbend Inc. <https://www.lightbend.com> | ||
*/ | ||
|
||
package com.typesafe.sslconfig.ssl | ||
|
||
@deprecated("not operative", "0.5.0") | ||
object AlgorithmConstraintsParser { | ||
def apply(input: String): AlgorithmConstraint = | ||
new AlgorithmConstraint | ||
} | ||
|
||
@deprecated("not operative", "0.5.0") | ||
class AlgorithmConstraint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters