A simple Qt based browser with no bullshit that supports PKCS#11 tokens (such as the SuisseID).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
432 B

#ifndef SMARTCARDAUTH_H
#define SMARTCARDAUTH_H
#include <QtCore/QMutex>
14 years ago
#include <private/qsslsocket_openssl_symbols_p.h>
class QWidget;
14 years ago
int client_cert_cb(SSL *ssl, X509 **x509, EVP_PKEY **pkey);
14 years ago
class SmartCardAuth: public QObject {
Q_OBJECT;
public:
SmartCardAuth();
~SmartCardAuth();
14 years ago
private Q_SLOTS:
void extendedContextInitialization(ssl_ctx_st* ctx);
};
#endif // SMARTCARDAUTH_H