Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. qsslconfigurati

    Log in to post
    • All categories
    • H

      Unsolved AC certificate not trusted during handshake
      General and Desktop • qsslsocket qsslcertificate qsslconfigurati • • hbob

      1
      0
      Votes
      1
      Posts
      108
      Views

      No one has replied

    • Ni.Sumi

      Unsolved QSsl Configuration in VS2013 strange error
      General and Desktop • qsslconfigurati openssl qtnetwork vs 2013 • • Ni.Sumi

      9
      1
      Votes
      9
      Posts
      3422
      Views

      kshegunov

      @Ni.Sumi
      I mean the compiler invocation, not the error (I saw the error in your first post). It should look something like this:

      g++ -c -pipe -g -std=gnu++0x -Wall -W -D_REENTRANT -fPIC -DQT_QML_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I../../myproject -I. -I../../../qt/qt-5.6/qtbase/include -I../../../qt/qt-5.6/qtbase/include/QtWidgets -I../../../qt/qt-5.6/qtbase/include/QtGui -I../../../qt/qt-5.6/qtbase/include/QtCore -I. -I../../../qt/qt-5.6/qtbase/mkspecs/linux-g++ -o somesource.o ../../myproject/somesource.cpp

      / I've taken it from g++, but you get the idea - the compile line, the call that compiles the offending source. /

      Kind regards.

    • M

      Unsolved Sigill when debugging application with
      General and Desktop • debugger qssl qsslconfigurati sigill • • Mark81

      2
      0
      Votes
      2
      Posts
      1037
      Views

      kshegunov

      @Mark81 said:

      SIGILL

      That is an illegal instruction signal, which is pretty rare. Basically means the memory your program's residing in got corrupted somehow. So there's something very wrong. Check any callbacks, overwriting by mistake virtual tables and the such.

    • GoneWithTheFood

      Solved How to load a .p12 key into the QSslKey object?
      Qt WebKit • qsslkey qnetworkaccessm qsslconfigurati • • GoneWithTheFood

      3
      0
      Votes
      3
      Posts
      2825
      Views

      GoneWithTheFood

      @luca yes you are right. :)
      Just now I've tried to export the private key from the .p12 file with the openssl API. This key could be constructed into QSslKey object now. Thanks a lot.
      But to configure in such a way is a little bit too complicated. Is there any class or method I can use, so that I can directly import the .p12 file into the QSslConfiguration object?