File: ksslkeygentest.cpp

package info (click to toggle)
khtml 5.103.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 38,192 kB
  • sloc: cpp: 202,858; ansic: 2,829; perl: 2,317; yacc: 1,497; python: 339; sh: 108; makefile: 7
file content (11 lines) | stat: -rw-r--r-- 200 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#include <qapplication.h>
#include <ksslkeygen.h>

int main(int argc, char **argv)
{
    QApplication app(argc, argv);

    KSSLKeyGen wizard(0);
    wizard.setKeySize(0);
    return wizard.exec();
}