Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 1.39 KB

README.md

File metadata and controls

44 lines (28 loc) · 1.39 KB

Implementation of Signing HTTP Messages draft spec for akka HTTP. Client and server libs.

References:

This code was initially in rww-play and was tested with a JavaScript client in rww-scala-js.

Usage

The packages are published on a maven repository at http://bblfish.net/work/repo/

Check the tests for library useage. More elaborate tests cases are still in development.

Java imports

todo: can't remember how that works

sbt imports for Scala

resolvers += "bblfish.net repository" at "http://bblfish.net/work/repo/snapshots/"
libraryDependencies += "run.cosy" %% "akka-http-signature" % "0.2-SNAPSHOT"

Ammonite

For running in the ammonite.io shell script you can do the following:

import coursier.core.Authentication, coursier.MavenRepository

interp.repositories() ++= Seq(MavenRepository(
  "http://bblfish.net/work/repo/snapshots/"
  ))

@

import $ivy.`run.cosy::akka-http-signature:0.2-SNAPSHOT`