Skip to content

Commit

Permalink
Merge pull request #33 from yuyichao/0.6
Browse files Browse the repository at this point in the history
Fix typealias depwarn on 0.6
  • Loading branch information
staticfloat authored Feb 13, 2017
2 parents cbc92e6 + afbbaa5 commit 08bfbf1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ type SHA2_512_CTX <: SHA2_CTX
end

# Typealias common nicknames for SHA2 family of functions
typealias SHA224_CTX SHA2_224_CTX
typealias SHA256_CTX SHA2_256_CTX
typealias SHA384_CTX SHA2_384_CTX
typealias SHA512_CTX SHA2_512_CTX
const SHA224_CTX = SHA2_224_CTX
const SHA256_CTX = SHA2_256_CTX
const SHA384_CTX = SHA2_384_CTX
const SHA512_CTX = SHA2_512_CTX


# SHA3 224/256/384/512-bit context structures
Expand Down

0 comments on commit 08bfbf1

Please sign in to comment.