Re: [Interest] Integrate crypto in Qt project

2018-01-30 Thread Christophe Thomas
08 January 2018 18:14 > *To:* interest@qt-project.org > *Subject:* Re: [Interest] Integrate crypto in Qt project > > > > On 1/8/2018 8:39 AM, Jason H wrote: > > I've used CryptoCpp (as someone else mentioned) with Qt... > > > The last release of that (5.6.5) wa

Re: [Interest] Integrate crypto in Qt project

2018-01-09 Thread Luca Beldi
It is actively maintained on github. Not a dead project at all: https://github.com/weidai11/cryptopp/commits/master From: Bob Hood [mailto:bho...@comcast.net] Sent: 08 January 2018 18:14 To: interest@qt-project.org Subject: Re: [Interest] Integrate crypto in Qt project On 1/8/2018 8:39 AM

Re: [Interest] Integrate crypto in Qt project

2018-01-08 Thread Bob Hood
Ah, went to the wrong Google search result.  :) On 1/8/2018 2:10 PM, Jason H wrote: Sent: Monday, January 08, 2018 at 1:52 PM From: "Marian Beermann" To: interest@qt-project.org Subject: Re: [Interest] Integrate crypto in Qt project On 08.01.2018 19:14, Bob Hood wrote: On 1/8/20

Re: [Interest] Integrate crypto in Qt project

2018-01-08 Thread Jason H
ubject: Re: [Interest] Integrate crypto in Qt project Thanks a lot for all your comments,    I'm starting to investigate all these libs, one of my concern is to be able to use it on a wide range of plateforme. Curent code is running on linux, windows, macos, ios, android, rpi thanks to Qt.   Chris

Re: [Interest] Integrate crypto in Qt project

2018-01-08 Thread Christophe Thomas
t; > > Sent: Monday, January 08, 2018 at 1:52 PM > > From: "Marian Beermann" > > To: interest@qt-project.org > > Subject: Re: [Interest] Integrate crypto in Qt project > > > > On 08.01.2018 19:14, Bob Hood wrote: > > > On 1/8/2018 8:39 AM, Ja

Re: [Interest] Integrate crypto in Qt project

2018-01-08 Thread Jason H
> Sent: Monday, January 08, 2018 at 1:52 PM > From: "Marian Beermann" > To: interest@qt-project.org > Subject: Re: [Interest] Integrate crypto in Qt project > > On 08.01.2018 19:14, Bob Hood wrote: > > On 1/8/2018 8:39 AM, Jason H wrote: > >> I've

Re: [Interest] Integrate crypto in Qt project

2018-01-08 Thread Marian Beermann
On 08.01.2018 19:14, Bob Hood wrote: > On 1/8/2018 8:39 AM, Jason H wrote: >> I've used CryptoCpp (as someone else mentioned) with Qt...  > > The last release of that (5.6.5) was 15 months ago.  Might be a dead > project. > Crypto++ is under active development. __

Re: [Interest] Integrate crypto in Qt project

2018-01-08 Thread Bob Hood
On 1/8/2018 8:39 AM, Jason H wrote: I've used CryptoCpp (as someone else mentioned) with Qt... The last release of that (5.6.5) was 15 months ago.  Might be a dead project. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org

Re: [Interest] Integrate crypto in Qt project

2018-01-08 Thread Jason H
st is still a Good Thing(tm). I also received excellent support from the maintainer.    Sent: Sunday, January 07, 2018 at 1:00 PM From: "Christophe Thomas" To: interest@qt-project.org Subject: [Interest] Integrate crypto in Qt project Hello,   I'm working on a projects that needs to

Re: [Interest] Integrate crypto in Qt project

2018-01-08 Thread Konrad Rosenbaum
Hi, On Mon, January 8, 2018 12:05, Christophe Thomas wrote: > Thx for your feedback, you're welcome. > Don't worry I won't even imagine using some unknown third party code for > crypto in production code. > > Since yesterday I've continued studying my case and my problem is that I'm > bounded to

Re: [Interest] Integrate crypto in Qt project

2018-01-08 Thread Christophe Thomas
Thx for your feedback, Don't worry I won't even imagine using some unknown third party code for crypto in production code. Since yesterday I've continued studying my case and my problem is that I'm bounded to a specific format: I'm trying to implement some map (S63 format) decryption. This forma

Re: [Interest] Integrate crypto in Qt project

2018-01-08 Thread Konrad Rosenbaum
Hi, DON'T RUN YOUR OWN CUSTOM CRYPTO! [sorry for shouting, but this is kind of important] If you followed any IT news for the last year or so you know that it is incredibly easy to mess up. Even if you are an expert. I'm sorry to say, you do not seem to be an expert, otherwise you'd know a lot o

Re: [Interest] Integrate crypto in Qt project

2018-01-08 Thread Luca Beldi
maintain a crypto library is just too much of a burden to be carried by Qt internally From: Christophe Thomas [mailto:oxygen77...@gmail.com] Sent: 07 January 2018 18:01 To: interest@qt-project.org Subject: [Interest] Integrate crypto in Qt project Hello, I'm working on a projects that nee

[Interest] Integrate crypto in Qt project

2018-01-07 Thread Christophe Thomas
Hello, I'm working on a projects that needs to integrate following crypto functions: - validate signature - compute hash ==> I found QCryptographiqueHash - manage certificate ==> I found QSslCertificate - do some decryption/encryption using blowfish ==> I found some simple C++ implementation that