Skip to content

Commit

Permalink
Merge pull request #106 from opencastsoftware/hotp
Browse files Browse the repository at this point in the history
Add HOTP algorithm
  • Loading branch information
armanbilge authored Jul 15, 2022
2 parents eb11820 + aee956a commit 8d03685
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 0 deletions.
52 changes: 52 additions & 0 deletions core/shared/src/main/scala/bobcats/Hotp.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/*
* Copyright 2021 Typelevel
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package bobcats

import cats.Functor
import cats.syntax.functor._
import scodec.bits.ByteVector

object Hotp {
private val powersOfTen =
Array(1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000, 1000000000)

def generate[F[_]](
key: SecretKey[HmacAlgorithm.SHA1.type],
movingFactor: Long
)(implicit F: Functor[F], H: Hmac[F]): F[Int] =
generate(key, movingFactor, digits = 6)

def generate[F[_]](
key: SecretKey[HmacAlgorithm.SHA1.type],
movingFactor: Long,
digits: Int
)(implicit F: Functor[F], H: Hmac[F]): F[Int] = {
require(digits >= 6, s"digits must be at least 6, was $digits")
require(digits < 10, s"digits must be less than 10, was $digits")

H.digest(key, ByteVector.fromLong(movingFactor)).map { hmac =>
val offset = hmac.last & 0xf

val binaryCode = ((hmac.get(offset.longValue) & 0x7f) << 24) |
((hmac.get((offset + 1).longValue) & 0xff) << 16) |
((hmac.get((offset + 2).longValue) & 0xff) << 8) |
(hmac.get((offset + 3).longValue) & 0xff)

binaryCode % powersOfTen(digits)
}
}
}
47 changes: 47 additions & 0 deletions core/shared/src/test/scala/bobcats/HotpSuite.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/*
* Copyright 2021 Typelevel
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package bobcats

import cats.Functor
import cats.effect.IO
import cats.syntax.functor._
import munit.CatsEffectSuite
import scodec.bits._

import scala.reflect.ClassTag

class HotpSuite extends CatsEffectSuite {

val key = hex"3132333435363738393031323334353637383930"

val expectedValues = List(
755224, 287082, 359152, 969429, 338314, 254676, 287922, 162583, 399871, 520489
)

def tests[F[_]: Hmac: Functor](implicit ct: ClassTag[F[Nothing]]) = {
expectedValues.zipWithIndex.foreach {
case (expected, counter) =>
test(s"RFC4226 test case ${counter} for ${ct.runtimeClass.getSimpleName()}") {
Hotp
.generate[F](SecretKeySpec(key, HmacAlgorithm.SHA1), counter.toLong, digits = 6)
.map { obtained => assertEquals(obtained, expected) }
}
}
}

tests[IO]
}

0 comments on commit 8d03685

Please sign in to comment.