您当前的位置:首页 > IT编程 > C++
| C语言 | Java | VB | VC | python | Android | TensorFlow | C++ | oracle | 学术与代码 | cnn卷积神经网络 | gnn | 图像修复 | Keras | 数据集 | Neo4j | 自然语言处理 | 深度学习 | 医学CAD | 医学影像 | 超参数 | pointnet | pytorch | 异常检测 | Transformers | 情感分类 | 知识图谱 |

自学教程:C++ verifyMessage函数代码示例

51自学网 2021-06-03 09:37:48
  C++
这篇教程C++ verifyMessage函数代码示例写得很实用,希望能帮到您。

本文整理汇总了C++中verifyMessage函数的典型用法代码示例。如果您正苦于以下问题:C++ verifyMessage函数的具体用法?C++ verifyMessage怎么用?C++ verifyMessage使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。

在下文中一共展示了verifyMessage函数的23个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。

示例1: QStackedWidget

WalletView::WalletView(QWidget *parent, BitcoinGUI *_gui):    QStackedWidget(parent),    gui(_gui),    clientModel(0),    walletModel(0){    // Create tabs    overviewPage = new OverviewPage();    blockBrowser = new BlockBrowser(this);    chatWindow = new ChatWindow(this);    transactionsPage = new QWidget(this);    QVBoxLayout *vbox = new QVBoxLayout();    QHBoxLayout *hbox_buttons = new QHBoxLayout();    transactionView = new TransactionView(this);    vbox->addWidget(transactionView);    QPushButton *exportButton = new QPushButton(tr("&Export"), this);    exportButton->setToolTip(tr("Export the data in the current tab to a file"));#ifndef Q_OS_MAC // Icons on push buttons are very uncommon on Mac    exportButton->setIcon(QIcon(":/icons/export"));#endif    hbox_buttons->addStretch();    hbox_buttons->addWidget(exportButton);    vbox->addLayout(hbox_buttons);    transactionsPage->setLayout(vbox);    addressBookPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::SendingTab);    receiveCoinsPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::ReceivingTab);    sendCoinsPage = new SendCoinsDialog(gui);    signVerifyMessageDialog = new SignVerifyMessageDialog(gui);    addWidget(overviewPage);    addWidget(transactionsPage);    addWidget(addressBookPage);    addWidget(receiveCoinsPage);    addWidget(sendCoinsPage);    addWidget(blockBrowser);    addWidget(chatWindow);    // Clicking on a transaction on the overview page simply sends you to transaction history page    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), this, SLOT(gotoHistoryPage()));    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), transactionView, SLOT(focusTransaction(QModelIndex)));    // Double-clicking on a transaction on the transaction history page shows details    connect(transactionView, SIGNAL(doubleClicked(QModelIndex)), transactionView, SLOT(showDetails()));    // Clicking on "Send Coins" in the address book sends you to the send coins tab    connect(addressBookPage, SIGNAL(sendCoins(QString)), this, SLOT(gotoSendCoinsPage(QString)));    // Clicking on "Verify Message" in the address book opens the verify message tab in the Sign/Verify Message dialog    connect(addressBookPage, SIGNAL(verifyMessage(QString)), this, SLOT(gotoVerifyMessageTab(QString)));    // Clicking on "Sign Message" in the receive coins page opens the sign message tab in the Sign/Verify Message dialog    connect(receiveCoinsPage, SIGNAL(signMessage(QString)), this, SLOT(gotoSignMessageTab(QString)));    // Clicking on "Export" allows to export the transaction list    connect(exportButton, SIGNAL(clicked()), transactionView, SLOT(exportClicked()));    gotoOverviewPage();}
开发者ID:WorldWideCoin,项目名称:wwcoin,代码行数:60,


示例2: QStackedWidget

WalletView::WalletView(QWidget *parent, BitcoinGUI *_gui):    QStackedWidget(parent),    gui(_gui),    clientModel(0),    walletModel(0),    encryptWalletAction(0),    unlockWalletAction(0),    lockWalletAction(0),    changePassphraseAction(0){    // Create actions for the toolbar, menu bar and tray/dock icon    createActions();    // Create tabs    overviewPage =  new OverviewPage();    blockBrowser = new BlockBrowser(gui);    transactionsPage = new QWidget(this);    QVBoxLayout *vbox = new QVBoxLayout();    transactionView = new TransactionView(this);    vbox->addWidget(transactionView);    transactionsPage->setLayout(vbox);    addressBookPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::SendingTab);    receiveCoinsPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::ReceivingTab);    sendCoinsPage = new SendCoinsDialog(gui);    signVerifyMessageDialog = new SignVerifyMessageDialog(gui);    stakeForCharityDialog = new StakeForCharityDialog(this);    addWidget(overviewPage);    addWidget(transactionsPage);    addWidget(addressBookPage);    addWidget(receiveCoinsPage);    addWidget(sendCoinsPage);    addWidget(stakeForCharityDialog);    // Clicking on a transaction on the overview page simply sends you to transaction history page    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), gui, SLOT(gotoHistoryPage()));    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), transactionView, SLOT(focusTransaction(QModelIndex)));    // Double-clicking on a transaction on the transaction history page shows details    connect(transactionView, SIGNAL(doubleClicked(QModelIndex)), transactionView, SLOT(showDetails()));    // Clicking on "Verify Message" in the address book sends you to the verify message tab    connect(addressBookPage, SIGNAL(verifyMessage(QString)), this, SLOT(gotoVerifyMessageTab(QString)));    // Clicking on "Sign Message" in the receive coins page sends you to the sign message tab    connect(receiveCoinsPage, SIGNAL(signMessage(QString)), this, SLOT(gotoSignMessageTab(QString)));    // Clicking on "Stake For Charity" in the address book sends you to the stake for charity page    connect(addressBookPage, SIGNAL(stakeForCharitySignal(QString)), this, SLOT(charityClicked(QString)));    connect(transactionView, SIGNAL(blockBrowserSignal(QString)), this, SLOT(gotoBlockBrowser(QString)));    gotoOverviewPage();}
开发者ID:Tranz5,项目名称:HoboNickels,代码行数:58,


示例3: clearWidgets

void BitcoinGUI::gotoAddressBookPage(){    addressBookAction->setChecked(true);    clearWidgets();    addressBookPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::SendingTab);    addressBookPage->setOptionsModel(this->clientModel->getOptionsModel());    addressBookPage->setModel(this->walletModel->getAddressTableModel());    // Clicking on "Verify Message" in the address book sends you to the verify message tab    connect(addressBookPage, SIGNAL(verifyMessage(QString)), this, SLOT(gotoVerifyMessageTab(QString)));    centralStackedWidget->addWidget(addressBookPage);    centralStackedWidget->setCurrentWidget(addressBookPage);    exportAction->setEnabled(true);    disconnect(exportAction, SIGNAL(triggered()), 0, 0);    connect(exportAction, SIGNAL(triggered()), addressBookPage, SLOT(exportClicked()));}
开发者ID:satoshichain,项目名称:satoshichain,代码行数:16,


示例4: __MIX_PREFIX_FUNC_PASTE

int __MIX_PREFIX_FUNC_PASTE(MIX_PREFIX_UPAPI_FUNC,verifyMessage(JNIEnv* env, jobject javaThis, jstring str_sign_in, jstring str_sign_out, jstring str_cert_id,jstring str_hash_alg, jint i_sign_form)){	if(!str_sign_in || !str_sign_out || !str_cert_id)	{		setLastErrInfo(EStateErrorInvalidArg);		return EStateErrorInvalidArg;	}	return  verifyMessage(		(* env)->GetStringUTFChars(env, str_sign_in, 0),		(* env)->GetStringUTFChars(env, str_sign_out, 0),		atoi((* env)->GetStringUTFChars(env, str_cert_id, 0)),		(* env)->GetStringUTFChars(env, str_hash_alg, 0),		(int)(i_sign_form)		);}
开发者ID:stoneskill,项目名称:mix-n2,代码行数:17,


示例5: QMainWindow

//.........这里部分代码省略.........    //if (GetBoolArg("-staking", true))    //{        QTimer *timerStakingIcon = new QTimer(labelStakingIcon);        connect(timerStakingIcon, SIGNAL(timeout()), this, SLOT(updateStakingIcon()));        timerStakingIcon->start(30 * 1000);        updateStakingIcon();    //}    /*frameBlocks->setMinimumWidth(56);    frameBlocks->setMaximumWidth(56);    QHBoxLayout *frameBlocksLayout = new QHBoxLayout(frameBlocks);    frameBlocksLayout->setContentsMargins(3,0,3,0);    frameBlocksLayout->setSpacing(3);    labelEncryptionIcon = new QLabel();    labelConnectionsIcon = new QLabel();    labelBlocksIcon = new QLabel();    frameBlocksLayout->addStretch();    frameBlocksLayout->addWidget(labelEncryptionIcon);    frameBlocksLayout->addStretch();    frameBlocksLayout->addWidget(labelConnectionsIcon);    frameBlocksLayout->addStretch();    frameBlocksLayout->addWidget(labelBlocksIcon);    frameBlocksLayout->addStretch(); */    // Progress bar and label for blocks download    progressBarLabel = new QLabel();    progressBarLabel->setVisible(false);    progressBar = new QProgressBar();    progressBar->setAlignment(Qt::AlignCenter);    progressBar->setVisible(false);    progressBar->setOrientation(Qt::Vertical);    progressBar->setObjectName("progress");    progressBar->setStyleSheet("QProgressBar{"                               "border: 1px solid transparent;"                               "font-size:9px;"                               "text-align: center;"                               "color:rgba(0,0,0,100);"                               "border-radius: 5px;"                               "background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:1, stop:0 rgba(182, 182, 182, 100), stop:1 rgba(209, 209, 209, 100));"                                   "}"                               "QProgressBar::chunk{"                               "background-color: rgba(0,255,0,100);"                               "}");    frameBlocks->setObjectName("frame");    addToolBarBreak(Qt::LeftToolBarArea);    QToolBar *toolbar2 = addToolBar(tr("Tabs toolbar"));    addToolBar(Qt::LeftToolBarArea,toolbar2);    toolbar2->setOrientation(Qt::Vertical);    toolbar2->setMovable( false );    toolbar2->setObjectName("toolbar2");    toolbar2->setFixedWidth(25);    toolbar2->addWidget(frameBlocks);    toolbar2->setStyleSheet("QToolBar QToolButton { background:none;padding-top:10px;padding-bottom:5px; }");    toolbar2->addWidget(progressBarLabel);    toolbar2->addWidget(progressBar);   /* // Progress bar and label for blocks download    progressBarLabel = new QLabel();    progressBarLabel->setVisible(false);    progressBar = new QProgressBar();    progressBar->setAlignment(Qt::AlignCenter);    progressBar->setVisible(false);    // Override style sheet for progress bar for styles that have a segmented progress bar,    // as they make the text unreadable (workaround for issue #1071)    // See https://qt-project.org/doc/qt-4.8/gallery.html    QString curStyle = qApp->style()->metaObject()->className();    if(curStyle == "QWindowsStyle" || curStyle == "QWindowsXPStyle")    {        progressBar->setStyleSheet("QProgressBar { background-color: #e8e8e8; border: 1px solid grey; border-radius: 7px; padding: 1px; text-align: center; } QProgressBar::chunk { background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #FF8000, stop: 1 orange); border-radius: 7px; margin: 0px; }");    }    statusBar()->addWidget(progressBarLabel);    statusBar()->addWidget(progressBar);    statusBar()->addPermanentWidget(frameBlocks);*/    syncIconMovie = new QMovie(":/movies/update_spinner", "gif", this);	// this->setStyleSheet("background-color: #ceffee;");    // Clicking on a transaction on the overview page simply sends you to transaction history page    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), this, SLOT(gotoHistoryPage()));    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), transactionView, SLOT(focusTransaction(QModelIndex)));    // Double-clicking on a transaction on the transaction history page shows details    connect(transactionView, SIGNAL(doubleClicked(QModelIndex)), transactionView, SLOT(showDetails()));    rpcConsole = new RPCConsole(this);    connect(openRPCConsoleAction, SIGNAL(triggered()), rpcConsole, SLOT(show()));    // Clicking on "Verify Message" in the address book sends you to the verify message tab    connect(addressBookPage, SIGNAL(verifyMessage(QString)), this, SLOT(gotoVerifyMessageTab(QString)));    // Clicking on "Sign Message" in the receive coins page sends you to the sign message tab    connect(receiveCoinsPage, SIGNAL(signMessage(QString)), this, SLOT(gotoSignMessageTab(QString)));    // Click on "Access Nxt Inside" in the receive coins page sends you to access Nxt inside tab    connect(receiveCoinsPage, SIGNAL(accessNxt(QString)), this, SLOT(gotoAccessNxtInsideTab(QString)));    gotoOverviewPage();}
开发者ID:UdjinM6,项目名称:Coin2.1,代码行数:101,


示例6: QMainWindow

//.........这里部分代码省略.........    addressBookPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::SendingTab);    receiveCoinsPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::ReceivingTab);    sendCoinsPage = new SendCoinsDialog(this);    signVerifyMessageDialog = new SignVerifyMessageDialog(this);    centralWidget = new QStackedWidget(this);    centralWidget->addWidget(overviewPage);    centralWidget->addWidget(statisticsPage);	centralWidget->addWidget(blockBrowser);	centralWidget->addWidget(transactionsPage);    centralWidget->addWidget(addressBookPage);    centralWidget->addWidget(receiveCoinsPage);    centralWidget->addWidget(sendCoinsPage);    setCentralWidget(centralWidget);    // Status bar notification icons    QFrame *frameBlocks = new QFrame();    frameBlocks->setStyleSheet("frameBlocks { background: rgb(127,154,131); }");    frameBlocks->setContentsMargins(0,0,0,0);    frameBlocks->setMinimumWidth(30);    frameBlocks->setMaximumWidth(30);    QVBoxLayout *frameBlocksLayout = new QVBoxLayout(frameBlocks);    frameBlocksLayout->setContentsMargins(1,0,1,0);    frameBlocksLayout->setSpacing(-1);    labelEncryptionIcon = new QLabel();    labelStakingIcon = new QLabel();    labelConnectionsIcon = new QLabel();    labelBlocksIcon = new QLabel();    frameBlocksLayout->addWidget(labelEncryptionIcon);    frameBlocksLayout->addWidget(labelStakingIcon);    frameBlocksLayout->addWidget(labelConnectionsIcon);    frameBlocksLayout->addWidget(labelBlocksIcon);    frameBlocksLayout->addStretch();    if (GetBoolArg("-staking", true))    {        QTimer *timerStakingIcon = new QTimer(labelStakingIcon);        connect(timerStakingIcon, SIGNAL(timeout()), this, SLOT(updateStakingIcon()));        timerStakingIcon->start(30 * 1000);        updateStakingIcon();    }    // Progress bar and label for blocks download    progressBarLabel = new QLabel();    progressBarLabel->setVisible(false);    progressBar = new QProgressBar();    progressBar->setAlignment(Qt::AlignCenter);    progressBar->setVisible(false);    progressBar->setOrientation(Qt::Vertical);    progressBar->setObjectName("progress");    progressBar->setStyleSheet("QProgressBar{"                               "border: 1px solid transparent;"							   "font-size:9px;"                               "text-align: center;"                               "color:rgba(0,0,0,100);"                               "border-radius: 5px;"                               "background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:1, stop:0 rgba(182, 182, 182, 100), stop:1 rgba(209, 209, 209, 100));"                                   "}"                               "QProgressBar::chunk{"                               "background-color: rgba(0,255,0,100);"                               "}");    frameBlocks->setObjectName("frame");	addToolBarBreak(Qt::LeftToolBarArea);    QToolBar *toolbar2 = addToolBar(tr("Tabs toolbar"));    addToolBar(Qt::LeftToolBarArea,toolbar2);    toolbar2->setOrientation(Qt::Vertical);    toolbar2->setMovable( false );    toolbar2->setObjectName("toolbar2");    toolbar2->setFixedWidth(25);    toolbar2->addWidget(frameBlocks);    toolbar2->addWidget(progressBarLabel);    toolbar2->addWidget(progressBar);    syncIconMovie = new QMovie(":/movies/update_spinner", "gif", this);    // Clicking on a transaction on the overview page simply sends you to transaction history page    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), this, SLOT(gotoHistoryPage()));    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), transactionView, SLOT(focusTransaction(QModelIndex)));    // Double-clicking on a transaction on the transaction history page shows details    connect(transactionView, SIGNAL(doubleClicked(QModelIndex)), transactionView, SLOT(showDetails()));    rpcConsole = new RPCConsole(this);    connect(openRPCConsoleAction, SIGNAL(triggered()), rpcConsole, SLOT(show()));    // Clicking on "Verify Message" in the address book sends you to the verify message tab    connect(addressBookPage, SIGNAL(verifyMessage(QString)), this, SLOT(gotoVerifyMessageTab(QString)));    // Clicking on "Sign Message" in the receive coins page sends you to the sign message tab    connect(receiveCoinsPage, SIGNAL(signMessage(QString)), this, SLOT(gotoSignMessageTab(QString)));    gotoOverviewPage();}
开发者ID:magebane,项目名称:SpinCoin,代码行数:101,


示例7: QMainWindow

//.........这里部分代码省略.........    // Status bar notification icons    QWidget *frameBlocks = new QWidget();    frameBlocks->setContentsMargins(0,0,0,0);    frameBlocks->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);    frameBlocks->setStyleSheet("QWidget { background: none; margin-bottom: 5px; }");    QHBoxLayout *frameBlocksLayout = new QHBoxLayout(frameBlocks);    frameBlocksLayout->setContentsMargins(3,0,3,0);    frameBlocksLayout->setSpacing(3);    frameBlocksLayout->setAlignment(Qt::AlignHCenter);#ifdef USE_NATIVE_I2P    labelI2PConnections = new QLabel();    labelI2POnly = new QLabel();    labelI2PGenerated = new QLabel();    labelI2PGenerated->setObjectName("labelI2PGenerated");    labelI2PGenerated->setStyleSheet("#labelI2PGenerated { color: #ffffff; }");    frameBlocksLayout->addWidget(labelI2PGenerated);    frameBlocksLayout->addWidget(labelI2POnly);    frameBlocksLayout->addWidget(labelI2PConnections);#endif    labelEncryptionIcon = new QLabel();    labelStakingIcon = new QLabel();    labelConnectionsIcon = new QLabel();    labelBlocksIcon = new QLabel();    frameBlocksLayout->addStretch();    frameBlocksLayout->addWidget(labelEncryptionIcon);    frameBlocksLayout->addStretch();    frameBlocksLayout->addWidget(labelStakingIcon);    frameBlocksLayout->addStretch();    frameBlocksLayout->addWidget(labelConnectionsIcon);    frameBlocksLayout->addStretch();    frameBlocksLayout->addWidget(labelBlocksIcon);    frameBlocksLayout->addStretch();    netLabel = new QLabel();    netLabel->setObjectName("netLabel");    netLabel->setStyleSheet("#netLabel { color: #ffffff; }");    frameBlocksLayout->addWidget(netLabel);    frameBlocksLayout->addStretch();        if (GetBoolArg("-staking", true))    {        QTimer *timerStakingIcon = new QTimer(labelStakingIcon);        connect(timerStakingIcon, SIGNAL(timeout()), this, SLOT(updateStakingIcon()));        timerStakingIcon->start(30 * 1000);        updateStakingIcon();    }    // Progress bar and label for blocks download    progressBarLabel = new QLabel();    progressBarLabel->setStyleSheet("#progressBarLabel { color: #ffffff; }");    progressBarLabel->setVisible(false);    progressBar = new QProgressBar();    progressBar->setAlignment(Qt::AlignCenter);    progressBar->setVisible(false);    if (!fUseBlackTheme)    {        // Override style sheet for progress bar for styles that have a segmented progress bar,        // as they make the text unreadable (workaround for issue #1071)        // See https://qt-project.org/doc/qt-4.8/gallery.html        QString curStyle = qApp->style()->metaObject()->className();        if(curStyle == "QWindowsStyle" || curStyle == "QWindowsXPStyle")        {            progressBar->setStyleSheet("QProgressBar { background-color: #e8e8e8; border: 1px solid grey; border-radius: 7px; padding: 1px; text-align: center; } QProgressBar::chunk { background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #FF8000, stop: 1 orange); border-radius: 7px; margin: 0px; }");        }    }    statusBar()->addWidget(progressBarLabel);    statusBar()->addWidget(progressBar);    statusBar()->addPermanentWidget(frameBlocks);    statusBar()->setObjectName("statusBar");    statusBar()->setStyleSheet("#statusBar { color: #ffffff; background-color: qradialgradient(cx: -0.8, cy: 0, fx: -0.8, fy: 0, radius: 0.6, stop: 0 #37c5db, stop: 1 #37c5db);  }");    syncIconMovie = new QMovie(fUseBlackTheme ? ":/movies/update_spinner_black" : ":/movies/update_spinner", "mng", this);    // Clicking on a transaction on the overview page simply sends you to transaction history page    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), this, SLOT(gotoHistoryPage()));    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), transactionView, SLOT(focusTransaction(QModelIndex)));    // Double-clicking on a transaction on the transaction history page shows details    connect(transactionView, SIGNAL(doubleClicked(QModelIndex)), transactionView, SLOT(showDetails()));    rpcConsole = new RPCConsole(this);    connect(openRPCConsoleAction, SIGNAL(triggered()), rpcConsole, SLOT(show()));    // prevents an oben debug window from becoming stuck/unusable on client shutdown    connect(quitAction, SIGNAL(triggered()), rpcConsole, SLOT(hide()));    // Clicking on "Verify Message" in the address book sends you to the verify message tab    connect(addressBookPage, SIGNAL(verifyMessage(QString)), this, SLOT(gotoVerifyMessageTab(QString)));    // Clicking on "Sign Message" in the receive coins page sends you to the sign message tab    connect(receiveCoinsPage, SIGNAL(signMessage(QString)), this, SLOT(gotoSignMessageTab(QString)));    gotoOverviewPage();}
开发者ID:nodexcoin,项目名称:nodex,代码行数:101,


示例8: QMainWindow

//.........这里部分代码省略.........	p.setColor(QPalette::Window, QColor(0x22, 0x22, 0x22));	p.setColor(QPalette::Button, QColor(0x22, 0x22, 0x22));	p.setColor(QPalette::Mid, QColor(0x22, 0x22, 0x22));	p.setColor(QPalette::Base, QColor(0x22, 0x22, 0x22));	p.setColor(QPalette::AlternateBase, QColor(0x22, 0x22, 0x22));	setPalette(p);	QFile style(":/text/res/text/style.qss");	style.open(QFile::ReadOnly);	setStyleSheet(QString::fromUtf8(style.readAll()));    /* don't override the background color of the toolbar on mac os x due to       the whole component it resides on not being paintable     */#ifdef Q_OS_MAC    toolbar->setStyleSheet("QToolBar { background-color: transparent; border: 0px solid black; padding: 3px; }");#endif    // Create tabs    overviewPage = new OverviewPage();	chatWindow = new ChatWindow(this); //Create Chat Window	blockExplorer = new BlockExplorer(this); //Include Block Explorer    transactionsPage = new QWidget(this);    QVBoxLayout *vbox = new QVBoxLayout();    transactionView = new TransactionView(this);    vbox->addWidget(transactionView);    transactionsPage->setLayout(vbox);    addressBookPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::SendingTab);    receiveCoinsPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::ReceivingTab);    sendCoinsPage = new SendCoinsDialog(this);    signVerifyMessageDialog = new SignVerifyMessageDialog(this);    centralWidget = new QStackedWidget(this);	centralWidget->addWidget(chatWindow); //Add Chat Window	centralWidget->addWidget(blockExplorer); //Create Block Explorer    centralWidget->addWidget(overviewPage);    centralWidget->addWidget(transactionsPage);    centralWidget->addWidget(addressBookPage);    centralWidget->addWidget(receiveCoinsPage);    centralWidget->addWidget(sendCoinsPage);#ifdef FIRST_CLASS_MESSAGING    centralWidget->addWidget(signVerifyMessageDialog);#endif    setCentralWidget(centralWidget);    // Create status bar    statusBar();    // Status bar notification icons    QFrame *frameBlocks = new QFrame();    frameBlocks->setContentsMargins(0,0,0,0);    frameBlocks->setMinimumWidth(73);    frameBlocks->setMaximumWidth(73);    QHBoxLayout *frameBlocksLayout = new QHBoxLayout(frameBlocks);    frameBlocksLayout->setContentsMargins(3,0,3,0);    frameBlocksLayout->setSpacing(3);    labelEncryptionIcon = new QLabel();    labelConnectionsIcon = new QLabel();    labelBlocksIcon = new QLabel();    frameBlocksLayout->addStretch();    frameBlocksLayout->addWidget(labelEncryptionIcon);    frameBlocksLayout->addStretch();    frameBlocksLayout->addStretch();    frameBlocksLayout->addWidget(labelConnectionsIcon);    frameBlocksLayout->addStretch();    frameBlocksLayout->addWidget(labelBlocksIcon);    frameBlocksLayout->addStretch();    // Progress bar and label for blocks download    progressBarLabel = new QLabel();    progressBarLabel->setVisible(false);    progressBar = new QProgressBar();    progressBar->setAlignment(Qt::AlignCenter);    progressBar->setVisible(false);    statusBar()->addWidget(progressBarLabel);    statusBar()->addWidget(progressBar);    statusBar()->addPermanentWidget(frameBlocks);    syncIconMovie = new QMovie(":/movies/update_spinner", "mng", this);    // Clicking on a transaction on the overview page simply sends you to transaction history page    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), this, SLOT(gotoHistoryPage()));    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), transactionView, SLOT(focusTransaction(QModelIndex)));    // Double-clicking on a transaction on the transaction history page shows details    connect(transactionView, SIGNAL(doubleClicked(QModelIndex)), transactionView, SLOT(showDetails()));    rpcConsole = new RPCConsole(this);    connect(openRPCConsoleAction, SIGNAL(triggered()), rpcConsole, SLOT(show()));    // Clicking on "Verify Message" in the address book sends you to the verify message tab    connect(addressBookPage, SIGNAL(verifyMessage(QString)), this, SLOT(gotoVerifyMessageTab(QString)));    // Clicking on "Sign Message" in the receive coins page sends you to the sign message tab    connect(receiveCoinsPage, SIGNAL(signMessage(QString)), this, SLOT(gotoSignMessageTab(QString)));    gotoOverviewPage();}
开发者ID:jlcurby,项目名称:NobleCoin,代码行数:101,


示例9: QMainWindow

//.........这里部分代码省略.........    // Create actions for the toolbar, menu bar and tray/dock icon    createActions();    // Create application menu bar    createMenuBar();    // Create the toolbars    createToolBars();    // Create the tray icon (or setup the dock icon)    createTrayIcon();    // Create tabs    overviewPage = new OverviewPage();    transactionsPage = new QWidget(this);    QVBoxLayout *vbox = new QVBoxLayout();    transactionView = new TransactionView(this);    vbox->addWidget(transactionView);    transactionsPage->setLayout(vbox);    addressBookPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::SendingTab);    receiveCoinsPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::ReceivingTab);    sendCoinsPage = new SendCoinsDialog(this);    signVerifyMessageDialog = new SignVerifyMessageDialog(this);    centralWidget = new QStackedWidget(this);    centralWidget->addWidget(overviewPage);    centralWidget->addWidget(transactionsPage);    centralWidget->addWidget(addressBookPage);    centralWidget->addWidget(receiveCoinsPage);    centralWidget->addWidget(sendCoinsPage);    setCentralWidget(centralWidget);    // Create status bar    statusBar();    // Status bar notification icons    QFrame *frameBlocks = new QFrame();    frameBlocks->setContentsMargins(0,0,0,0);    frameBlocks->setMinimumWidth(56);    frameBlocks->setMaximumWidth(56);    QHBoxLayout *frameBlocksLayout = new QHBoxLayout(frameBlocks);    frameBlocksLayout->setContentsMargins(3,0,3,0);    frameBlocksLayout->setSpacing(3);    labelEncryptionIcon = new QLabel();    labelConnectionsIcon = new QLabel();    labelBlocksIcon = new QLabel();    frameBlocksLayout->addStretch();    frameBlocksLayout->addWidget(labelEncryptionIcon);    frameBlocksLayout->addStretch();    frameBlocksLayout->addWidget(labelConnectionsIcon);    frameBlocksLayout->addStretch();    frameBlocksLayout->addWidget(labelBlocksIcon);    frameBlocksLayout->addStretch();    // Progress bar and label for blocks download    progressBarLabel = new QLabel();    progressBarLabel->setVisible(false);    progressBar = new QProgressBar();    progressBar->setAlignment(Qt::AlignCenter);    progressBar->setVisible(false);    // Override style sheet for progress bar for styles that have a segmented progress bar,    // as they make the text unreadable (workaround for issue #1071)    // See https://qt-project.org/doc/qt-4.8/gallery.html    QString curStyle = qApp->style()->metaObject()->className();    if(curStyle == "QWindowsStyle" || curStyle == "QWindowsXPStyle")    {        progressBar->setStyleSheet("QProgressBar { background-color: #e8e8e8; border: 1px solid grey; border-radius: 7px; padding: 1px; text-align: center; } QProgressBar::chunk { background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #FF8000, stop: 1 orange); border-radius: 7px; margin: 0px; }");    }    statusBar()->addWidget(progressBarLabel);    statusBar()->addWidget(progressBar);    statusBar()->addPermanentWidget(frameBlocks);    syncIconMovie = new QMovie(":/movies/update_spinner", "mng", this);	// this->setStyleSheet("background-color: #ceffee;");    // Clicking on a transaction on the overview page simply sends you to transaction history page    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), this, SLOT(gotoHistoryPage()));    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), transactionView, SLOT(focusTransaction(QModelIndex)));    // Double-clicking on a transaction on the transaction history page shows details    connect(transactionView, SIGNAL(doubleClicked(QModelIndex)), transactionView, SLOT(showDetails()));    rpcConsole = new RPCConsole(this);    connect(openRPCConsoleAction, SIGNAL(triggered()), rpcConsole, SLOT(show()));    // Clicking on "Verify Message" in the address book sends you to the verify message tab    connect(addressBookPage, SIGNAL(verifyMessage(QString)), this, SLOT(gotoVerifyMessageTab(QString)));    // Clicking on "Sign Message" in the receive coins page sends you to the sign message tab    connect(receiveCoinsPage, SIGNAL(signMessage(QString)), this, SLOT(gotoSignMessageTab(QString)));    gotoOverviewPage();}
开发者ID:hirishh,项目名称:BorzoCoin,代码行数:101,


示例10: QMainWindow

//.........这里部分代码省略.........    setWindowIcon(QIcon(":icons/bitcoin"));#else    setUnifiedTitleAndToolBarOnMac(true);    QApplication::setAttribute(Qt::AA_DontShowIconsInMenus);#endif    // Accept D&D of URIs    setAcceptDrops(true);    // Create actions for the toolbar, menu bar and tray/dock icon    createActions();    // Create application menu bar    createMenuBar();    // Create the toolbars    createToolBars();    // Create the tray icon (or setup the dock icon)    createTrayIcon();    // Create tabs    overviewPage = new OverviewPage();    transactionsPage = new QWidget(this);    QVBoxLayout *vbox = new QVBoxLayout();    transactionView = new TransactionView(this);    vbox->addWidget(transactionView);    transactionsPage->setLayout(vbox);    addressBookPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::SendingTab);    receiveCoinsPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::ReceivingTab);    sendCoinsPage = new SendCoinsDialog(this);    signVerifyMessageDialog = new SignVerifyMessageDialog(this);    centralWidget = new QStackedWidget(this);    centralWidget->setContentsMargins(0, 0, 0, 0);    centralWidget->addWidget(overviewPage);    centralWidget->addWidget(transactionsPage);    centralWidget->addWidget(addressBookPage);    centralWidget->addWidget(receiveCoinsPage);    centralWidget->addWidget(sendCoinsPage);    setCentralWidget(centralWidget);    // Create status bar    // Status bar notification icons    labelEncryptionIcon = new QLabel();	labelStakingIcon = new QLabel();    labelConnectionsIcon = new QLabel();    labelBlocksIcon = new QLabel();		if (GetBoolArg("-staking", true))    {        QTimer *timerStakingIcon = new QTimer(labelStakingIcon);        connect(timerStakingIcon, SIGNAL(timeout()), this, SLOT(updateStakingIcon()));        timerStakingIcon->start(20 * 1000);        updateStakingIcon();    }    // Progress bar and label for blocks download    progressBarLabel = new QLabel();    progressBarLabel->setVisible(false);    progressBar = new QProgressBar();    addToolBarBreak(Qt::LeftToolBarArea);    QToolBar *toolbar2 = addToolBar(tr("Tabs toolbar"));    addToolBar(Qt::LeftToolBarArea,toolbar2);    toolbar2->setOrientation(Qt::Vertical);    toolbar2->setMovable( false );    toolbar2->setObjectName("toolbar2");    toolbar2->setFixedWidth(28);    toolbar2->setIconSize(QSize(28,54));	toolbar2->addWidget(labelEncryptionIcon);	toolbar2->addWidget(labelStakingIcon);    toolbar2->addWidget(labelConnectionsIcon);    toolbar2->addWidget(labelBlocksIcon);	toolbar2->setStyleSheet("#toolbar2 QToolButton { background: transparent;border:none;padding:0px;margin:0px;height:54px;width:28px; }");	    syncIconMovie = new QMovie(":/movies/update_spinner", "gif", this);    // Clicking on a transaction on the overview page simply sends you to transaction history page    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), this, SLOT(gotoHistoryPage()));    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), transactionView, SLOT(focusTransaction(QModelIndex)));    // Double-clicking on a transaction on the transaction history page shows details    connect(transactionView, SIGNAL(doubleClicked(QModelIndex)), transactionView, SLOT(showDetails()));    rpcConsole = new RPCConsole(this);    connect(openRPCConsoleAction, SIGNAL(triggered()), rpcConsole, SLOT(show()));    // Clicking on "Verify Message" in the address book sends you to the verify message tab    connect(addressBookPage, SIGNAL(verifyMessage(QString)), this, SLOT(gotoVerifyMessageTab(QString)));    // Clicking on "Sign Message" in the receive coins page sends you to the sign message tab    connect(receiveCoinsPage, SIGNAL(signMessage(QString)), this, SLOT(gotoSignMessageTab(QString)));    gotoOverviewPage();}
开发者ID:CandyCoinDev,项目名称:c1,代码行数:101,


示例11: QMainWindow

//.........这里部分代码省略.........    addressBookPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::SendingTab);    receiveCoinsPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::ReceivingTab);    sendCoinsPage = new SendCoinsDialog(this);    signVerifyMessageDialog = new SignVerifyMessageDialog(this);    centralWidget = new QStackedWidget(this);    centralWidget->addWidget(overviewPage);    centralWidget->addWidget(transactionsPage);    centralWidget->addWidget(addressBookPage);    centralWidget->addWidget(receiveCoinsPage);    centralWidget->addWidget(sendCoinsPage);    setCentralWidget(centralWidget);    // Create status bar    statusBar();    // Status bar notification icons    labelEncryptionIcon = new QLabel();    labelStakingIcon = new QLabel();    labelConnectionsIcon = new QLabel();    labelBlocksIcon = new QLabel();    if (GetBoolArg("-staking", true))    {        QTimer *timerStakingIcon = new QTimer(labelStakingIcon);        connect(timerStakingIcon, SIGNAL(timeout()), this, SLOT(updateStakingIcon()));        timerStakingIcon->start(30 * 1000);        updateStakingIcon();    }    // Progress bar and label for blocks download    progressBarLabel = new QLabel();    progressBarLabel->setVisible(false);    progressBar = new QProgressBar();    progressBar->setAlignment(Qt::AlignCenter);    progressBar->setVisible(false);    // Override style sheet for progress bar for styles that have a segmented progress bar,    // as they make the text unreadable (workaround for issue #1071)    // See https://qt-project.org/doc/qt-4.8/gallery.html    QString curStyle = qApp->style()->metaObject()->className();    if(curStyle == "QWindowsStyle" || curStyle == "QWindowsXPStyle")    {        progressBar->setStyleSheet("QProgressBar { background-color: #e8e8e8; border: 1px solid grey; border-radius: 7px; padding: 1px; text-align: center; } QProgressBar::chunk { background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #007FFF, stop: 1 #3B5998); border-radius: 7px; margin: 0px; }");    }    statusBar()->addWidget(progressBarLabel);    statusBar()->addWidget(progressBar);			    addToolBarBreak(Qt::LeftToolBarArea);    QToolBar *toolbar2 = addToolBar(tr("Tabs toolbar"));    addToolBar(Qt::LeftToolBarArea,toolbar2);    toolbar2->setOrientation(Qt::Vertical);    toolbar2->setMovable( false );    toolbar2->setObjectName("toolbar2");    toolbar2->setFixedWidth(28);    toolbar2->setIconSize(QSize(28,28));    toolbar2->addWidget(labelEncryptionIcon);    toolbar2->addWidget(labelStakingIcon);    toolbar2->addWidget(labelConnectionsIcon);    toolbar2->addWidget(labelBlocksIcon);    toolbar2->setStyleSheet("#toolbar2 QToolButton { border:none;padding:0px;margin:0px;height:20px;width:28px;margin-top:36px; }");//    toolbar2->setStyleSheet(QString::fromUtf8(style.readAll()));		addToolBarBreak(Qt::TopToolBarArea);    QToolBar *toolbar3 = addToolBar(tr("Green bar"));    addToolBar(Qt::TopToolBarArea,toolbar3);    toolbar3->setOrientation(Qt::Horizontal);    toolbar3->setMovable( false );    toolbar3->setObjectName("toolbar3");    toolbar3->setFixedHeight(2);    syncIconMovie = new QMovie(":/movies/update_spinner", "mng", this);    // Clicking on a transaction on the overview page simply sends you to transaction history page    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), this, SLOT(gotoHistoryPage()));    connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), transactionView, SLOT(focusTransaction(QModelIndex)));    // Double-clicking on a transaction on the transaction history page shows details    connect(transactionView, SIGNAL(doubleClicked(QModelIndex)), transactionView, SLOT(showDetails()));    rpcConsole = new RPCConsole(this);    connect(openRPCConsoleAction, SIGNAL(triggered()), rpcConsole, SLOT(show()));    // Clicking on "Verify Message" in the address book sends you to the verify message tab    connect(addressBookPage, SIGNAL(verifyMessage(QString)), this, SLOT(gotoVerifyMessageTab(QString)));    // Clicking on "Sign Message" in the receive coins page sends you to the sign message tab    connect(receiveCoinsPage, SIGNAL(signMessage(QString)), this, SLOT(gotoSignMessageTab(QString)));    gotoOverviewPage();}
开发者ID:crowetic,项目名称:global-master,代码行数:101,


示例12: QActionGroup

void BitcoinGUI::createActions(){    QActionGroup *tabGroup = new QActionGroup(this);    overviewAction = new QAction(QIcon(":/icons/overview"), tr("&Overview"), this);    overviewAction->setToolTip(tr("Show general overview of wallet"));    overviewAction->setCheckable(true);    overviewAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_1));    tabGroup->addAction(overviewAction);    miningAction = new QAction(QIcon(":/icons/mining"), tr("&Mining"), this);    miningAction->setToolTip(tr("Configure mining"));    miningAction->setCheckable(true);    tabGroup->addAction(miningAction);    historyAction = new QAction(QIcon(":/icons/history"), tr("&Transactions"), this);    historyAction->setToolTip(tr("Browse transaction history"));    historyAction->setCheckable(true);    historyAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_4));    tabGroup->addAction(historyAction);    addressBookAction = new QAction(QIcon(":/icons/address-book"), tr("&Address Book"), this);    addressBookAction->setToolTip(tr("Edit the list of stored addresses and labels"));    addressBookAction->setCheckable(true);    addressBookAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_5));    tabGroup->addAction(addressBookAction);    receiveCoinsAction = new QAction(QIcon(":/icons/receiving_addresses"), tr("&Receive coins"), this);    receiveCoinsAction->setToolTip(tr("Show the list of addresses for receiving payments"));    receiveCoinsAction->setCheckable(true);    receiveCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_3));    tabGroup->addAction(receiveCoinsAction);    sendCoinsAction = new QAction(QIcon(":/icons/send"), tr("&Send coins"), this);    sendCoinsAction->setToolTip(tr("Send coins to a Nullcoin address"));    sendCoinsAction->setCheckable(true);    sendCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_2));    tabGroup->addAction(sendCoinsAction);    messageAction = new QAction(QIcon(":/icons/edit"), tr("Sign &message..."), this);    messageAction->setToolTip(tr("Prove you control an address"));#ifdef FIRST_CLASS_MESSAGING    messageAction->setCheckable(true);#endif    tabGroup->addAction(messageAction);    connect(overviewAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));    connect(overviewAction, SIGNAL(triggered()), this, SLOT(gotoOverviewPage()));    connect(miningAction, SIGNAL(triggered()), this, SLOT(gotoMiningPage()));    connect(historyAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));    connect(historyAction, SIGNAL(triggered()), this, SLOT(gotoHistoryPage()));    connect(addressBookAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));    connect(addressBookAction, SIGNAL(triggered()), this, SLOT(gotoAddressBookPage()));    connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));    connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(gotoReceiveCoinsPage()));    connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));    connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(gotoSendCoinsPage()));    connect(messageAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));    connect(messageAction, SIGNAL(triggered()), this, SLOT(gotoMessagePage()));    quitAction = new QAction(QIcon(":/icons/quit"), tr("E&xit"), this);    quitAction->setToolTip(tr("Quit application"));    quitAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q));    quitAction->setMenuRole(QAction::QuitRole);    aboutAction = new QAction(QIcon(":/icons/bitcoin"), tr("&About %1").arg(qApp->applicationName()), this);    aboutAction->setToolTip(tr("Show information about Nullcoin"));    aboutAction->setMenuRole(QAction::AboutRole);    aboutQtAction = new QAction(tr("About &Qt"), this);    aboutQtAction->setToolTip(tr("Show information about Qt"));    aboutQtAction->setMenuRole(QAction::AboutQtRole);    optionsAction = new QAction(QIcon(":/icons/options"), tr("&Options..."), this);    optionsAction->setToolTip(tr("Modify configuration options for Nullcoin"));    optionsAction->setMenuRole(QAction::PreferencesRole);    toggleHideAction = new QAction(QIcon(":/icons/bitcoin"), tr("Show/Hide &Nullcoin"), this);    toggleHideAction->setToolTip(tr("Show or hide the Nullcoin window"));    exportAction = new QAction(QIcon(":/icons/export"), tr("&Export..."), this);    exportAction->setToolTip(tr("Export the data in the current tab to a file"));    encryptWalletAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Encrypt Wallet..."), this);    encryptWalletAction->setToolTip(tr("Encrypt or decrypt wallet"));    encryptWalletAction->setCheckable(true);    backupWalletAction = new QAction(QIcon(":/icons/filesave"), tr("&Backup Wallet..."), this);    backupWalletAction->setToolTip(tr("Backup wallet to another location"));    changePassphraseAction = new QAction(QIcon(":/icons/key"), tr("&Change Passphrase..."), this);    changePassphraseAction->setToolTip(tr("Change the passphrase used for wallet encryption"));    openRPCConsoleAction = new QAction(QIcon(":/icons/debugwindow"), tr("&Debug window"), this);    openRPCConsoleAction->setToolTip(tr("Open debugging and diagnostic console"));    verifyMessageAction = new QAction(QIcon(":/icons/transaction_0"), tr("&Verify message..."), this);    verifyMessageAction->setToolTip(tr("Verify a message signature"));    connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit()));    connect(optionsAction, SIGNAL(triggered()), this, SLOT(optionsClicked()));    connect(aboutAction, SIGNAL(triggered()), this, SLOT(aboutClicked()));    connect(aboutQtAction, SIGNAL(triggered()), qApp, SLOT(aboutQt()));    connect(toggleHideAction, SIGNAL(triggered()), this, SLOT(toggleHidden()));    connect(encryptWalletAction, SIGNAL(triggered(bool)), this, SLOT(encryptWallet(bool)));    connect(backupWalletAction, SIGNAL(triggered()), this, SLOT(backupWallet()));    connect(changePassphraseAction, SIGNAL(triggered()), this, SLOT(changePassphrase()));    connect(verifyMessageAction, SIGNAL(triggered()), this, SLOT(verifyMessage()));}
开发者ID:nullcoin,项目名称:nullcoin,代码行数:99,


示例13: main

//.........这里部分代码省略.........				char nickname[255] = {0};				char * filepw = "12345678";								char * filename = "sm2.pfx";				char buffer[1024*4];				char pfxBuffer[1024*4];				int pfxBufferLen = 1024*4;				FILE_READ("","SN-100000100000004.pfx",pfxBuffer,&pfxBufferLen);				//importCert(0,tt);				//ulRet = filterCert(&certCnt,"","","",0,0);				ulRet = filterCert(&certCnt,"","","",0,0);				getCertNickName(nickname, 0);				//ulRet = FilePfxExport_main(pfxBuffer,&pfxBufferLen,filepw,nickname,NULL);				//FILE_WRITE("","ppk.pfx",pfxBuffer,pfxBufferLen);				ulRet = FilePfxImport_main(pfxBuffer, pfxBufferLen,filepw,nickname,NULL);				ulRet = filterCert(&certCnt,"","","",0,0);				ulRet = encryptMessage(buffer, "abc","SM3",1);				ulRet = decryptMessage(buffer, buffer,"SM3",1);				ulRet = signMessage(buffer, "abc",0,"SM3",0);				ulRet = verifyMessage("abc",buffer,0,"SM3",0);				certCnt = 1;			}			return 0;			ulRet = genCSR( data_value, "", "李强强", "[email
C++ verifyStructSize函数代码示例
C++ verifyFormat函数代码示例
万事OK自学网:51自学网_软件自学网_CAD自学网自学excel、自学PS、自学CAD、自学C语言、自学css3实例,是一个通过网络自主学习工作技能的自学平台,网友喜欢的软件自学网站。