A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Rename HMAC module

+4 -4
+1 -1
src/Library/Cryptography/Hmac.elm
··· 1 - module Cryptography.HMAC exposing (encrypt128, encrypt64) 1 + module Cryptography.Hmac exposing (encrypt128, encrypt64) 2 2 3 3 {-| Cryptography – HMAC 4 4 -}
+2 -2
src/Library/Sources/Services/AmazonS3/Presign.elm
··· 2 2 3 3 import Binary exposing (Bits) 4 4 import Common 5 - import Cryptography.HMAC as HMAC 5 + import Cryptography.Hmac as Hmac 6 6 import DateFormat as Date 7 7 import Dict 8 8 import Dict.Ext as Dict ··· 201 201 202 202 hmacSha256 : String -> Bits -> Bits 203 203 hmacSha256 = 204 - HMAC.encrypt64 SHA.sha256 204 + Hmac.encrypt64 SHA.sha256
+1 -1
src/Library/Sources/Services/Azure/Authorization.elm
··· 10 10 import Binary 11 11 import BinaryBase64 12 12 import Common 13 - import Cryptography.HMAC as Hmac 13 + import Cryptography.Hmac as Hmac 14 14 import DateFormat as Date 15 15 import Dict 16 16 import Dict.Ext as Dict