91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++ 編寫Python擴展(密碼生成器)

發布時間:2020-07-26 04:39:23 來源:網絡 閱讀:984 作者:LanYuLei 欄目:編程語言

簡介

在最近的開發中,遇到了一個問題,發現Python沒有一個生成指定復雜度密碼的模塊(反正我沒有找到),需要自己寫一段生成隨機數的代碼來生成密碼,因此我就用C++自己寫的一個擴展模塊。

模塊的要求:

  • 必須同時包含大寫小寫和數字
  • 可以傳遞參數設置密碼長度

上面的要求可以自己定制,比如說加上特殊字符,都是可以的,只要稍稍修改下代碼即可。

源碼

頭文件

//
// Created by lanyulei on 18-9-27.
//

#ifndef GENERATEPASSWORD_GENERATEPASSWORD_H
#define GENERATEPASSWORD_GENERATEPASSWORD_H

#include <iostream>
#include <string>
#include <time.h>
#include <boost/python.hpp> 

using namespace boost::python;

class GeneratePassword{
public:
    GeneratePassword(int length);
    std::string getPassword();
private:
    int m_intLength;
};

#endif //GENERATEPASSWORD_GENERATEPASSWORD_H

源文件

//
// Created by lanyulei on 18-9-27.
//

#include "GeneratePassword.h"

using namespace std;

// 判斷密碼復雜度是否符合要求
bool judgment(const string& passowrdValue, int length) {
    int Pcount = 0;
    int pcount = 0;
    int numberCount = 0;
    for (int i=0; i<length; i++)    {
        if (isupper(passowrdValue[i])) {
            Pcount++;
        } else if (islower(passowrdValue[i])) {
            pcount++;
        } else if (isdigit(passowrdValue[i])) {
            numberCount++;
        }
    }

    if (Pcount && pcount && numberCount) {
        return true;
    } else {
        return false;
    }
}

// 構造函數,設置密碼生成位數
GeneratePassword::GeneratePassword(int length):m_intLength(length){}

// 生成密碼,并且返回
string GeneratePassword::getPassword() {
    char chr[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
                  'A', 'B', 'C', 'D', 'E', 'F', 'G',
                  'H', 'I', 'J', 'K', 'L', 'M', 'N',
                  'O', 'P', 'Q', 'R', 'S', 'T', 'U',
                  'V', 'W', 'X', 'Y', 'Z',
                  'a', 'b', 'c', 'd', 'e', 'f', 'g',
                  'h', 'i', 'j', 'k', 'l', 'm', 'n',
                  'o', 'p', 'q', 'r', 's', 't', 'u',
                  'v', 'w', 'x', 'y', 'z'
    };
    string strResult;
    int gcounts = 0;
    while (gcounts < 10) {
        if (judgment(strResult, m_intLength)) {
            break;
        } else {
            strResult.clear();
            char buf[10] = {0};
            for (int i=0; i<m_intLength; i++)   {
                int idx = rand()%62;
                sprintf(buf, "%c", chr[idx]);
                strResult.append(buf);
            }
        }
        gcounts++;
    }

    return strResult;

}

// 生成Python可調用的動態鏈接庫
BOOST_PYTHON_MODULE(gpassword){
    class_<GeneratePassword>
      ("gpassword", init<int>())
      .def("getPassword", &GeneratePassword::getPassword);
}

編譯命令

# python3
g++ -shared -o helloworld.so -fPIC -I/usr/include/python3.6m/ helloworld.cpp -lpython3.6m -lboost_python3

# python2
g++ -shared -o helloworld.so -fPIC -I/usr/include/python2.7/ helloworld.cpp -lpython -lboost_python

效果展示

In [2]: import gpassword

In [3]: gp = gpassword.gpassword(18)  // 實例化,并且設置生成多少位的密碼

In [4]: gp.getPassword()  // 生成密碼
Out[4]: 'fa37JncCHryDsbzayy'

寫的有點low,如有好的意見請不吝賜教,非常感謝。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

芜湖市| 咸阳市| 祁连县| 丹江口市| 金山区| 柳林县| 承德市| 崇礼县| 祁东县| 乌海市| 新化县| 新竹市| 驻马店市| 河北省| 金门县| 万宁市| 房山区| 二连浩特市| 新竹市| 东宁县| 余江县| 定远县| 天长市| 即墨市| 通江县| 株洲县| 徐州市| 五台县| 威宁| 陆良县| 贺州市| 兴国县| 阳曲县| 鱼台县| 德化县| 白沙| 黄梅县| 香港| 犍为县| 西丰县| 保靖县|