LINUX.ORG.RU

Считать файл поблочно?

 , , , ,


1

3

Вот искомый код

FILE *fp,*fencrypted,*fdecrypted;
	char str[N];
	if ((fp=fopen("message.txt", "r" ))==NULL) {
		//printf("Cannot open file.\n");
		std::cout<<"Cannot open file.\n";
		exit (1);
	}
	
	std::vector<uint64_t> *msg = new std::vector<uint64_t>(),
		*plaintext = new std::vector<uint64_t>();//plain text

	unsigned long long id;
	while(!feof (fp)) {
		for (int i = 0; i<N; i++)
			str[i] = '\0';
		if (fgets(str, N, fp))
		{	
			//printf("%s", str);
			std::cout<<str;
			memcpy(&id, str, N);
			msg->push_back(id);
		}
	}
вот сам файл
Business process, activities that produce a specific service or product for customers
Business process modeling, activity of representing processes of an enterprise in order 
Manufacturing process management, a collection of technologies and methods used to define.
Process architecture, structural design of processes, applies to fields such as computers.
Process costing, a cost allocation procedure of managerial accounting
Process management, ensemble of activities of planning and monitoring the performance of .
Process management (Project Management) , a systematic series of activities directed .
Process-based management, is a management approach that views a business as a collection .
Process industry, a category of material-related industry.
fgets плохо получается считывать(последний нуль-символ мешает), точнее разбить весь текст на массивы по 8 символов еще нужно в конец забить нулями если символов меньше 8



Последнее исправление: Gremlin_ (всего исправлений: 2)

Поменял код на fgetc

	char ch;
	int countbyte = 0;
	while ((ch = fgetc(fp)) != -1)
	{
		if (countbyte % 8 == 0 && countbyte!=0)
		{
			countbyte = 0;
			std::cout << str;
			memcpy(&id, str, N);
			msg->push_back(id);
			for (int i = 0; i<N; i++)
				str[i] = '\0';
		}
		str[countbyte] = ch;
		countbyte++;
	}
	memcpy(&id, str, N);
	msg->push_back(id);

Gremlin_
() автор топика
Ответ на: комментарий от Gremlin_

Вот код самой программы работы сети фейстеля вдруг кому-нибудь понадобится

#include <iostream>
#include <vector>
#include <fstream>  
//#include <stdlib.h>   
typedef unsigned long long uint64_t;
typedef unsigned int uint32_t;
#define N 8
#define F32 0xFFFFFFFF
#define size64 sizeof(uint64_t)
#define ROR(x,n,xsize)((x>>n)|(x<<(xsize-n)))
#define ROL(x,n,xsize)((x<<n)|(x>>(xsize-n)))
#define RKEY(r)((ROR(K,r*3,size64*8))&F32)
const uint64_t K = 0x96EA704CFB1CF672;//base key to forming of round keys
uint32_t RK[N];//massive round keys
void createRoundKeys(bool print)
{
	for (int i = 0; i < N; i++)
	{
		RK[i]=(ROR(K, i * 8, size64 * 8))&F32;
		if (print)
			std::cout << "key[" << i << "]=" << std::hex << RK[i] << std::endl;
	}
}
uint32_t F(uint32_t subblk, uint32_t key)
{
	/*
	uint32_t f1 = ROL(subblk, 9, sizeof(subblk) * 8);
	uint32_t f2 = ROR(key, 11, sizeof(key) * 8) | subblk;
	return f1 ^ !f2;
	*/
	return subblk+key;
}
//encryption 64-digit block of message
uint64_t encrypt(uint64_t block, bool print)
{
	//select subblocks
	uint32_t left = (block >> 32)&F32;
	uint32_t right = block&F32;

	uint32_t left_, right_;//subblock in the end of round
	for (int r = 0; r < N; r++)
	{
		if (print)
			std::cout << "round " << r << std::endl << "input blks " << std::hex << left << " " << right << std::endl;
		uint32_t fk = F(left, RK[r]);
		left_ = left;
		right_ = right^fk;
		if (r < N - 1)//swap places to next round
		{
			left = right_;
			right = left_;
		}
		else//last round not swap
		{
			left = left_;
			right = right_;
		}
		if (print)
			std::cout << "round" << r << std::endl << "output blks " << std::hex << left << " " << right << std::endl;
	}
	//collect subblock in block
	uint64_t c_block = left;
	c_block = (c_block << 32) | (right&F32);
	return c_block;
}
//decryption 64-digit block of message
uint64_t decrypt(uint64_t c_block, bool print)
{
	//select subblocks
	uint32_t left = (c_block >> 32)&F32;
	uint32_t right = c_block&F32;

	uint32_t left_, right_;//subblock in the end of round
	for (int r = N-1; r >=0; r--)
	{
		if (print)
			std::cout << "round " << r << std::endl << "input blks " << std::hex << left << " " << right << std::endl;
		uint32_t fk = F(left, RK[r]);
		left_ = left;
		right_ = right^fk;
		if (r > 0)//swap places to next round
		{
			left = right_;
			right = left_;
		}
		else //last round not swap
		{
			left = left_;
			right = right_;
		}
		if (print)
			std::cout << "round" << r << std::endl << "output blks " << std::hex << left << " " << right << std::endl;
	}
	//collect subblock in block
	uint64_t block = left;
	block = (block << 32) | (right&F32);
	return block;
}
#pragma warning(disable:4996)
void main()
{
	std::cout << "Base key\n" <<std::hex<<K<< std::endl;
	std::cout << "\nRound keys:" << std::endl;
	createRoundKeys(false);
	
	
	FILE *fp,*fencrypted,*fdecrypted;
	char str[N];
	if ((fp=fopen("message.txt", "r" ))==NULL) {
		std::cout<<"Cannot open file.\n";
		exit (1);
	}
	
	std::vector<uint64_t> *msg = new std::vector<uint64_t>(),
		*plaintext = new std::vector<uint64_t>();//plain text

	unsigned long long id;
	
	char ch;
	int countbyte = 0;
	while ((ch = fgetc(fp)) != -1)
	{
		if (countbyte % 8 == 0 && countbyte!=0)
		{
			countbyte = 0;
			std::cout << str;
			memcpy(&id, str, N);
			msg->push_back(id);
			for (int i = 0; i<N; i++)
				str[i] = '\0';
		}
		str[countbyte] = ch;
		countbyte++;
	}
	memcpy(&id, str, N);
	msg->push_back(id);

	//uint64_t msg = 0xFFAADD11CCBB2299;//plain text

	fclose(fp);
	int ii=0;
	if ((fencrypted = fopen("cryptmessage.txt", "w")) == NULL) {
		//printf("Cannot open file.\n");
		std::cout << "Cannot open file.\n";
		exit(1);
	}
	if ((fdecrypted = fopen("message2.txt", "w")) == NULL) {
		//printf("Cannot open file.\n");
		std::cout << "Cannot open file.\n";
		exit(1);
	}
	for (std::vector<uint64_t>::iterator it = msg->begin() ; it != msg->end(); ++it)
	{
		std::cout << "msg:\n" << std::hex << *it<< std::endl;
		//std::cout << "msg:\n" << std::hex << msg << std::endl;
		//uint64_t cipher = encrypt(msg, true);//change on true second parameter when debug, ciphertext
		uint64_t cipher = encrypt(msg->at(ii), false);//change on true second parameter when debug, ciphertext
		
		std::cout << "encrypt:\n" << cipher << std::endl;
		memcpy(str, &cipher, N);
		fwrite(str, N,1, fencrypted);
		//msg = decrypt(cipher, true);//change on true second parameter when debug,plain text
		plaintext->push_back(decrypt(cipher, false));//change on true second parameter when debug,plain text

		memcpy(str, &plaintext->at(ii), N);
		fwrite(str,N,1, fdecrypted);

		//std::cout << "decrypt:\n" << msg<< std::endl;
		std::cout << "decrypt:\n" <<plaintext->at(ii)<< "\n--------------------------\n" << std::endl;
		ii++;
	}
	fclose(fencrypted);
	fclose(fdecrypted);
	
	system("pause");
}

Gremlin_
() автор топика
Ответ на: комментарий от i-rinat

он добавляет в конец массива str символ NULL(мешает при шифровании) ,а еще он не читает если дошел до конца строки как fgetc то бишь два условия у него я читал правда и убедился что написано правда

Gremlin_
() автор топика
std::vector<char> v;
	if (FILE *fp = fopen("filename.txt", "r"))
	{
		char buf[8];
		while (size_t len = fread(buf, 1, sizeof(buf), fp))
			{
				if(len < 8) 
				{
					memset(&buf[len], '\0', (sizeof(char)*8 - len));
				}
				v.insert(v.end(), buf, buf + sizeof(buf));				
			}
		fclose(fp);
	}

??? Или чего?

anonymous
()
Ответ на: комментарий от Gremlin_

Тут еще проблемка fwrite работает также как fgets только наоборот и придется модифицировать код заменяя fwrite на fputc чтобы можно было брать текст зашифрованный из файлика ,а не из алгоритма как у меня

Gremlin_
() автор топика
Ответ на: комментарий от XMs

Зачем ты мешаешь Си и Си++?

криптография же-шь..чтобы никто ни догадался !

PS/ память конечно за собой чистить не надо, работать только в общем стеке, с общей кучей, и std::vector во все поля..

MKuznetsov ★★★★★
()
Ответ на: комментарий от XMs

Потому что так преподают,(возможно), (при возможно) у нас было именно так.

anonymous
()
Ответ на: комментарий от XMs

ну дело было так, препод напечатал код за пару используя эти memcpy и прочее, я только добавил считывание с файла то есть все что есть в функции main как потребовал другой препод по практике

Gremlin_
() автор топика
Ответ на: комментарий от XMs

вот мой код:

FILE *fp,*fencrypted,*fdecrypted;
	char str[N];
	if ((fp=fopen("message.txt", "r" ))==NULL) {
		std::cout<<"Cannot open file.\n";
		exit (1);
	}
	
	std::vector<uint64_t> *msg = new std::vector<uint64_t>(),
		*plaintext = new std::vector<uint64_t>();//plain text

	unsigned long long id;
	
	char ch;
	int countbyte = 0;
	while ((ch = fgetc(fp)) != -1)
	{
		if (countbyte % 8 == 0 && countbyte!=0)
		{
			countbyte = 0;
			std::cout << str;
			memcpy(&id, str, N);
			msg->push_back(id);
			for (int i = 0; i<N; i++)
				str[i] = '\0';
		}
		str[countbyte] = ch;
		countbyte++;
	}
	memcpy(&id, str, N);
	msg->push_back(id);

	//uint64_t msg = 0xFFAADD11CCBB2299;//plain text

	fclose(fp);
	int ii=0;
	if ((fencrypted = fopen("cryptmessage.txt", "w")) == NULL) {
		//printf("Cannot open file.\n");
		std::cout << "Cannot open file.\n";
		exit(1);
	}
	if ((fdecrypted = fopen("message2.txt", "w")) == NULL) {
		//printf("Cannot open file.\n");
		std::cout << "Cannot open file.\n";
		exit(1);
	}
	for (std::vector<uint64_t>::iterator it = msg->begin() ; it != msg->end(); ++it)
	{
		std::cout << "msg:\n" << std::hex << *it<< std::endl;
		//std::cout << "msg:\n" << std::hex << msg << std::endl;
		//uint64_t cipher = encrypt(msg, true);//change on true second parameter when debug, ciphertext
		uint64_t cipher = encrypt(msg->at(ii), false);//change on true second parameter when debug, ciphertext
		
		std::cout << "encrypt:\n" << cipher << std::endl;
		memcpy(str, &cipher, N);
		fwrite(str, N,1, fencrypted);
		//msg = decrypt(cipher, true);//change on true second parameter when debug,plain text
		plaintext->push_back(decrypt(cipher, false));//change on true second parameter when debug,plain text

		memcpy(str, &plaintext->at(ii), N);
		fwrite(str,N,1, fdecrypted);

		//std::cout << "decrypt:\n" << msg<< std::endl;
		std::cout << "decrypt:\n" <<plaintext->at(ii)<< "\n--------------------------\n" << std::endl;
		ii++;
	}
	fclose(fencrypted);
	fclose(fdecrypted);
	
	system("pause");
остальное не моё

Gremlin_
() автор топика
Ответ на: комментарий от alexku

Если оно используется осознанно и к месту — ничего не мешает. Тут же унылая мешанина «напишу то, не знаю, что». Это можно было написать на чистом Си либо на чистых плюсах, и оно выглядело бы намного лучше

XMs ★★★★★
()
Ответ на: комментарий от Gremlin_

Трабла в бессмысленных операциях выделения на куче, прямом управлении памятью и работе с контейнером, который специально создавался, чтобы абстрагировать все эти вещи, как с каким-то массивом. К тому же, почему у тебя минимальная единица текста (plaintext же) — uint64_t? В чём тайный смысл выделять на символ 64 бита?

XMs ★★★★★
()
Последнее исправление: XMs (всего исправлений: 2)
Ответ на: комментарий от XMs

Во первых удобно использовать средства языка использовать unsigned long long для перевода в символы и обратно, во вторых удобно использовать на всяких там смарт картах и миникомпьютерах,в третьих вот https://ru.wikipedia.org/wiki/Сеть_Фейстеля

Gremlin_
() автор топика
Ответ на: комментарий от XMs

экономия памяти и размеров сообщений при передачи по сети

Gremlin_
() автор топика
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.