JuliaWeb / GnuTLS.jl

Transport Level Security for Julia Streams provided by GnuTLS
Other
8 stars 13 forks source link

Nettle.jl API breakage #60

Closed staticfloat closed 9 years ago

staticfloat commented 9 years ago

Nettle has just broken its API significantly, in order to be much more precompile-friendly. The big takeaway is that methods such as md5_hash(data) should be mapped to digest("md5", data), there are no more auto-generated types for hashes, and internally the code is a little easier to grok. This new version of Nettle.jl has not been released yet, I will make every effort to ensure that dependent packages such as this one have a chance to adapt before releasing the new version.

staticfloat commented 9 years ago

I just went through here and realized this package doesn't actually use the Nettle.jl julia code at all.

tkelman commented 9 years ago

Why's it in REQUIRE then?

staticfloat commented 9 years ago

They are essentially using Nettle.jl as a glorified bindeps script; then they use ccall exclusively.

Keno commented 9 years ago

Correct

tkelman commented 9 years ago

whoops missed that it's in the deps.jl script. carry on