Skip to content

Commit

Permalink
Merge pull request #291 from scala-steward/update/cats-core-2.10.0
Browse files Browse the repository at this point in the history
Update cats-core, cats-kernel to 2.10.0
  • Loading branch information
simao committed Oct 3, 2023
2 parents 9d3a913 + 70c22ab commit 35f2643
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ val Library = new {
val refined = "0.11.0"
val scalaTest = "3.2.12"
val metricsV = "4.2.20"
val cats = "2.0.0"
val cats = "2.10.0"
val logback = "1.4.11"
val flyway = "9.22.2"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package com.advancedtelematic.libats.slick.db

import java.util.Base64

import cats.syntax.all._
import cats.data.{Validated, ValidatedNel}
import javax.crypto.Cipher
import javax.crypto.spec.PBEParameterSpec
Expand All @@ -17,9 +18,6 @@ import javax.crypto.SecretKeyFactory
import javax.crypto.spec.PBEKeySpec
import org.bouncycastle.jce.provider.BouncyCastleProvider


import cats.implicits._

protected [db] class SlickCrypto(salt: Array[Byte], password: String) {
private lazy val pbeParameterSpec = new PBEParameterSpec(salt, 1000)
private val BC = BouncyCastleProvider.PROVIDER_NAME
Expand Down

0 comments on commit 35f2643

Please sign in to comment.