Skip to content

Commit

Permalink
Scalafmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mpilquist committed Aug 24, 2024
1 parent cdf2478 commit 7c32bcb
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ trait HashCompanionPlatform {
private[fs2] def apply[F[_]: Sync](algorithm: HashAlgorithm): Resource[F, Hash[F]] =
Resource.eval(Sync[F].delay(unsafe(algorithm)))

private[hashing] def hmac[F[_]: Sync](algorithm: HashAlgorithm, key: Chunk[Byte]): Resource[F, Hash[F]] =
private[hashing] def hmac[F[_]: Sync](
algorithm: HashAlgorithm,
key: Chunk[Byte]
): Resource[F, Hash[F]] =
Resource.eval(Sync[F].delay(unsafeHmac(algorithm, key)))

private[fs2] def unsafe[F[_]: Sync](algorithm: HashAlgorithm): Hash[F] =
Expand Down

0 comments on commit 7c32bcb

Please sign in to comment.