소스 검색

Improved MANGLER::MANGLER so that Position is set in the initialization list.


git-svn-id: https://svn.microneil.com/svn/CodeDweller/trunk@14 d34b734f-a00e-4b39-a726-e4eeb87269ab
wx
madscientist 15 년 전
부모
커밋
f36bff0262
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4
    4
      mangler.cpp

+ 4
- 4
mangler.cpp 파일 보기

@@ -97,10 +97,10 @@ unsigned char MANGLER::Decrypt(unsigned char i) {
return g; // to demodulate the input.
} // then drive the engine
// with the original input.
MANGLER::MANGLER(void) {
for(short c = 0;c<256;c++) // The default constructor sets
Fill[c]=(unsigned char) c; // the key to the root primary
Position = 0; // value and Position to 0.
MANGLER::MANGLER(void) : Position(0) { // The default constructor sets
for(unsigned int c = 0;c<256;c++) // the key to the root primary
Fill[c]=(unsigned char) c; // value and Position to 0.
}



Loading…
취소
저장