/* vi: set sw=4 ts=4: * * Copyright (C) 2007 - 2011 Christian Hohnstaedt. * * All rights reserved. */ #ifndef __HASH_BOX_H #define __HASH_BOX_H #include #include class hashBox: public QComboBox { Q_OBJECT private: static int default_md; QString wanted_md; int backup; int key_type; public: hashBox(QWidget *parent); void setKeyType(int type); const EVP_MD *currentHash() const; QString currentHashName() const; int currentHashIdx() const; bool isInsecure() const; void setCurrentMD(const EVP_MD *md); void setDefaultHash(); void setupHashes(QList nids); void setupAllHashes(); void setCurrentString(QString md); static void setDefault(QString def); static QString getDefault(); static const EVP_MD *getDefaultMD(); }; #endif