0

私は単純なテキスト暗号化装置を作ろうとしています (すべての機能が完全であるわけではありません) が、助けが必要な特定の問題があります。この時点でコーディングを停止し、テスト用にコメント付きのドキュメントをいくつか追加しました。

関数 algorithm() では、16 ~ 25 行目で、入れ子になったループ内の std::string KEY に std::string ck[] のインデックスを追加しています。外側のループは、PASSWORD.size() の測定のために実行され、すべての ck[] に対して各 PASSWORD.substr(...) をチェックします。

ただし、出力は PASSWORD の最初と最後の文字のインデックス値でしかありません。例えば。PASSWORD=abc KEY が 0002 を出力する場合、PASSWORD 全体を KEY にする必要があります (指定どおり)。

#include <string.h>
#include <iostream>
#include <stdlib.h>
#include <sstream>


std::string PASSWORD, KEY, ENCRYPTED_TEXT;

void algorithm(std::string note){
    ENCRYPTED_TEXT.append(note);

    /**STANDARD RULESET**/
    std::string ck[] = { "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", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9" };

    for(int x=0;x<PASSWORD.size();x++){
        for(int y=0;y<sizeof(ck)/4;y++){ 
            if(PASSWORD.substr(x,x+1)==ck[y]){
                std::stringstream ind;
                if(y>9) ind << y+1;
                else ind << "0" << y;
                KEY.append(ind.str());
            }
        }
    }
    std::cout << "\nKey is " << KEY;

    //make_file(ENCRYPTED_TEXT);
}

void qn_setup(){
    bool ask=true;
    while(ask=true){
        std::string check1="", check2="";
        std::cout << "Type a password:\n";
        std::cin >> check1;
        std::cout << "Confirm password:\n";
        std::cin >> check2;
        if(check1==check2) { 
            PASSWORD=check1;
            ENCRYPTED_TEXT=check1;
            ask=false; 
            break; }
        else { std::cout << "\nPasswords did not match.\n"; }
    }
}

int main(){
    qn_setup();
    algorithm(""); //testing key
}

論理エラーだけで、構文エラーはありません。

4

1 に答える 1

1

string substr(size_t pos = 0、size_t n = npos)const;

Generate substring

Returns a string object with its contents initialized to a substring of the 
current object.

This substring is the character sequence that starts at character position 
pos and has a length of n characters.

したがって、チェックは次のようになります。

PASSWORD.substr(x,1)==ck[y] /* instead of PASSWORD.substr(x,x+1) */
于 2012-07-12T11:20:14.590 に答える