c - 如何在 C 语言中使用线程创建一个简单的程序?

标签 c linux multithreading pthreads fedora

我是 C 开发新手,我只了解基础知识,我需要创建一个程序来发现像这样的简单哈希密码:

#define _GNU_SOURCE
#include <stdio.h>
#include <string.h>
#include <crypt.h>
#include <stdlib.h>

#define SIZE_HASH 256
#define SIZE_PASSWORD 4

/* Get the hash from a passwod and put the result in hash. The array hash shoud have at lest 14 elements. */
void calculate_hash_password(const char *password, char *hash);

void increment_password(char *password);
void test_password(const char *p_hash, const char *password);

int main(int argc, char *argv[]) {
  int i;
  char password[SIZE_PASSWORD + 1];

  if (argc != 2) {
    printf("Use: %s <hash>", argv[0]);
    return 1;
  }

  for (i = 0; i < SIZE_PASSWORD; i++) {
    password[i] = 'a';
  }
  password[SIZE_PASSWORD] = '\0';

  while (1) {
    test_password(argv[1], password);
    increment_password(password);
  }
  return 0;
}

void test_password(const char *p_hash, const char *password) {
  char hash_calculado[SIZE_HASH + 1];

  calculate_hash_password(password, hash_calculado);
  if (!strcmp(p_hash, hash_calculado)) {
    printf("Achou! %s\n", password);
    exit(0);
  }
}

void increment_password(char *password) {
  int i;

  i = SIZE_PASSWORD - 1;
  while (i >= 0) {
    if (password[i] != 'z') {
      password[i]++;
      i = -2;
    } else {
      password[i] = 'a';
      i--;
    }
  }
  if (i == -1) {
    printf("Não achou!\n");
    exit(1);
  }
}


void calculate_hash_password(const char *password, char *hash) {
  struct crypt_data data;
  data.initialized = 0;
  strcpy(hash, crypt_r(password, "aa", &data));
}

我必须做与此相同的事情,但使用 C 中的线程。 我怎样才能做到这一点?

编辑 error

最佳答案

使用线程对密码进行哈希处理并不是一种特别直观或明显有​​用的方法,因此尚不清楚为什么有人想要这样做。

大概哈希计算以某种方式分开:也许一个线程处理从 AM 开头的密码,另一个线程处理 N通过 Z 或某些此类分区。一种想法是使用确定要执行哪个分区的参数多次运行同一函数。这是一个简单的、功能正常的程序,演示了该框架。

#include <iostream>
#include <pthread.h>    

static void *calc_func (void *arg)
{                               
        int param = (int) arg;
        if (param == 1) 
        {
                // do first partition of calculation
                // ...  
                std::cout << "partition 1" << std::endl;
        }                       
        else            
        {
                // do second partition of calculation
                // ...  
                std::cout << "partition 2" << std::endl;
        }                       
}                               

int main (...)
{                       
        // ...          
        pthread_t threadh[2];

        if (pthread_create (&threadh[0], NULL, calc_func, (void *)1) != 0)
        {               
                std::cerr << "error creating thread 1" << std::endl;
        }                       

        if (pthread_create (&threadh[1], NULL, calc_func, (void *)2) != 0)
        {                               
                std::cerr << "error creating thread 2" << std::endl;
        }               
        // wait for threads to exit
        pthread_join (threadh[0], NULL);
        pthread_join (threadh[1], NULL);
        return 0;       
}

要使用 gcc 在 Linux 上构建它,请使用命令 g++ -pthread filename.c++ -o filename

关于c - 如何在 C 语言中使用线程创建一个简单的程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8003392/

相关文章:

c - 无法调用函数而不陷入无限循环

c++ - N*(connect + send + close) vs (Nagle disable + connect + N*send + close),N > 1

c - 在C中输入大字符串

linux - Xargs 的最佳输出格式

c - SIGKILL 后如何进行清理?

linux - 在 SunOS 中使用哪个命令相当于 linux 中的 zgrep

java - 如何在java中单击按钮时暂停线程

c++ - 我怎样才能让 QThread 在不泄漏的情况下发出堆分配的 QObject?

wpf - 立即更新绑定(bind)的 WPF 属性

c - C中的精确计时