Re: dcrypt - a cryptography library written in D

2015-07-14 Thread via Digitalmars-d-announce
On Monday, 13 July 2015 at 15:49:39 UTC, puzzlehawk wrote: dcrypt is a cryptography library written entirely in D and a little bit D inline assembler. The library is inspired by BouncyCastle. Most important symmetric algorithms are implemented but work on asymmetric cryptography has not yet

Re: Beta D 2.068.0-b1

2015-07-14 Thread Anon via Digitalmars-d-announce
On Tuesday, 14 July 2015 at 05:40:52 UTC, Jacob Carlborg wrote: On 2015-07-14 00:11, Andrew Edwards wrote: I did notice that I can no longer create folders or links in the /usr/bin || /usr/lib || /usr/share directory or any subs there. I can however do so in /usr/local/* which is where I've

Re: Beta D 2.068.0-b1

2015-07-14 Thread Anon via Digitalmars-d-announce
On Tuesday, 14 July 2015 at 05:41:31 UTC, Jacob Carlborg wrote: On 2015-07-14 00:03, Andrew Edwards wrote: The installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance. Do you get some more

Re: Firs step of D/Objective-C merged

2015-07-14 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-07-14 03:11, Michel Fortin wrote: More or less. If you define an `extern (Objective-C)` class in D (once all my work is merged), you can use it and derive from it in Swift. If you define an `@objc` class in Swift you can use it from Objective-C and from D, but you can't derive from it.

Re: dcrypt - a cryptography library written in D

2015-07-14 Thread Dmitry Olshansky via Digitalmars-d-announce
On 14-Jul-2015 10:07, Marc =?UTF-8?B?U2Now7x0eiI=?= schue...@gmx.net wrote: On Monday, 13 July 2015 at 15:49:39 UTC, puzzlehawk wrote: [snip] Also, in 2.068 there will be an optional enum `blockSize` (in bits) for the hash algorithms, for use with the newly added std.digest.hmac. Your library

Re: Beta D 2.068.0-b1

2015-07-14 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-07-14 14:31, Anon wrote: Nothing else. After this message, I press close and the GUI disappears. I'll see if I can debug this. -- /Jacob Carlborg

Re: Last - but not least! - two DConf talks

2015-07-14 Thread Brad Anderson via Digitalmars-d-announce
On Monday, 13 July 2015 at 07:12:48 UTC, Atila Neves wrote: On Friday, 10 July 2015 at 18:33:04 UTC, Andrei Alexandrescu wrote: Spread the word! https://www.youtube.com/watch?v=bxSPCmwqgYs https://www.youtube.com/watch?v=jNQF3m5e2l0 Andrei

Re: Firs step of D/Objective-C merged

2015-07-14 Thread Michel Fortin via Digitalmars-d-announce
On 2015-07-14 18:53:31 +, Jacob Carlborg d...@me.com said: Hmm, I see. I imagined something similar would need to be done for the new exception handling in Swift 2, but for every method, that was unexpected. Now when Swift goes open source someone can just have a look and see what's going

Re: Beta D 2.068.0-b1

2015-07-14 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-07-14 00:11, Andrew Edwards wrote: I did notice that I can no longer create folders or links in the /usr/bin || /usr/lib || /usr/share directory or any subs there. I can however do so in /usr/local/* which is where I've installed the contents of dmd.2.068.0-b1. All seems to work fine.

Re: Firs step of D/Objective-C merged

2015-07-14 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-07-14 20:05, Michel Fortin wrote: Actually, they only need to follow it up what they guaranty will work. If you debug some Swift code mixed with Objective-C, you'll notice that every call to a Swift method from Objective-C first passes through a thunk function (not dissimilar to my

Re: Firs step of D/Objective-C merged

2015-07-14 Thread Michel Fortin via Digitalmars-d-announce
On 2015-07-14 13:59:51 +, Jacob Carlborg d...@me.com said: On 2015-07-14 03:11, Michel Fortin wrote: More or less. If you define an `extern (Objective-C)` class in D (once all my work is merged), you can use it and derive from it in Swift. If you define an `@objc` class in Swift you can