Subkey algorithms are shown in a new table column. Uid signature algorithms are shown in the tooltip text.
35 lines
692 B
C++
35 lines
692 B
C++
/*
|
|
* File: global.h
|
|
* Author: SET - nmset@yandex.com
|
|
* License : GPL v2
|
|
* Copyright SET - © 2019
|
|
*
|
|
* Created on 8 octobre 2019, 20:52
|
|
*/
|
|
|
|
#ifndef GLOBAL_H
|
|
#define GLOBAL_H
|
|
|
|
#include <Wt/WString.h>
|
|
using namespace Wt;
|
|
using namespace std;
|
|
|
|
#define TR(sk) WString::tr(sk)
|
|
|
|
const WString _APPNAME_("K7");
|
|
const WString _APPVERSION_("2");
|
|
const WString _SPACE_(" ");
|
|
const WString _COLON_(":");
|
|
const WString _DASH_("-");
|
|
const WString _BRACKET_OPEN_("(");
|
|
const WString _BRACKET_CLOSE_(")");
|
|
const WString _ANGLE_BRACKET_OPEN_("<");
|
|
const WString _ANGLE_BRACKET_CLOSE_(">");
|
|
|
|
typedef map<int, WString> UidValidityMap;
|
|
typedef map<int, WString> OwnerTrustMap;
|
|
|
|
|
|
#endif /* GLOBAL_H */
|
|
|