Курсовая работа: Разработка программы, генерирующей пароли пользователей
Рисунок А.1. Лист №2
ПРИЛОЖЕНИЕ Б
Текст программы
// Password.cpp: implementation of the Password class.
//////////////////////////////////////////////////////////////////////
#include <afx.h>
#include "stdafx.h"
#include "PassGen.h"
#include "Password.h"
#include "Random.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
Password::Password(int l)
{length = l;
passwrd = new char [length+1];
dicstr = new char [length+1];
PassAlfavit = new char [36];
HowMuchn = new int [length];
dicstr[length]='\0';
ValueOfDictionary= 134547;}
Password::~Password()
{delete(passwrd);
delete(dicstr);
delete(PassAlfavit);