Skip to content

Commit 7a01929

Browse files
authored
Merge pull request #1 from yglukhov/remove-securehash
Remove securehash
2 parents 65ea4c5 + 3c73248 commit 7a01929

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scram.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "0.1.2"
1+
version = "0.1.3"
22
author = "Huy Doan"
33
description = "Salted Challenge Response Authentication Mechanism (SCRAM) "
44
license = "MIT"

scram/client.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import base64, pegs, random, strutils, hmac, nimSHA2, securehash, md5, private/[utils,types]
1+
import base64, pegs, random, strutils, hmac, sha1, nimSHA2, md5, private/[utils,types]
22

33
export MD5Digest, SHA1Digest, SHA256Digest, SHA512Digest
44

scram/server.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import base64, pegs, random, strutils, hmac, nimSHA2, securehash, md5, private/[utils,types]
1+
import base64, pegs, random, strutils, hmac, sha1, nimSHA2, md5, private/[utils,types]
22

33
type
44
ScramServer*[T] = ref object of RootObj

0 commit comments

Comments
 (0)