임의의 파일을 임의로 생성하는 방법은 무엇입니까?


9

우리는 모두 공개 키를 ssh-keygen만들거나 확인할 때 생성 된 ASCII 랜덤 아트를 알고 ssh있습니다.

sha1sum또는로 파일의 해시를 생성 할 수 있다는 것도 알고 있습니다 md5sum.

그러나 공개 ssh 키가 아닌 파일에서 randomart "ssh-keygen-style" 을 생성 할 수 있습니까?

그것은 두 파일의 체크섬을 시각적으로 비교하는 더 재미있는 방법입니다.

답변:


8

nirejan이 만든 이 작은 C 프로그램 으로 파일의 임의의 예술을 생성 할 수 있습니다 .

#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>

#define XLIM 17
#define YLIM 9
#define ARSZ (XLIM * YLIM)

#define DEBUG 0

static uint16_t array[ARSZ];

const char symbols[] = {
    ' ', '.', 'o', '+',
    '=', '*', 'B', 'O',
    'X', '@', '%', '&',
    '#', '/', '^', 'S', 'E'
};

void print_graph(void)
{
    uint8_t i;
    uint8_t j;
    uint16_t temp;

    printf("+--[ RandomArt ]--+\n");

    for (i = 0; i < YLIM; i++) {
        printf("|");
        for (j = 0; j < XLIM; j++) {
            temp = array[j + XLIM * i];
            printf("%c", symbols[temp]);
        }
        printf("|\n");
    }

    printf("+-----------------+\n");
}

static char string[256];

static int ishex (char c)
{
    if ((c >= '0' && c <= '9') ||
        (c >= 'A' && c <= 'F') ||
        (c >= 'a' && c <= 'f')) {
            return 1;
    }

    return 0;
}

/*
 * The hexval function expects a hexadecimal character in the range
 * [0-9], [A-F] or [a-f]. Passing any other character will result in
 * undefined behaviour. Make sure you validate the character first.
 */
static uint8_t hexval (char c)
{
    if (c <= '9') {
        return (c - '0');
    } else if (c <= 'F') {
        return (c - 'A' + 10);
    } else if (c <= 'f') {
        return (c - 'a' + 10);
    }

    return 0;
}

int convert_string(char *arg)
{
    uint16_t i;
    char c;

    i = 0;
    while (*arg && i < 255) {
        c = *arg;
        if (!ishex(c)) {
            printf("Unrecognized character '%c'\n", c);
            return 1;
        }
        arg++;

        string[i] = hexval(c) << 4;

        if (!*arg) {
            printf("Odd number of characters\n");
            return 1;
        }
        c = *arg;

        if (!ishex(c)) {
            printf("Unrecognized character '%c'\n", c);
            return 1;
        }
        arg++;

        string[i] |= hexval(c);
        i++;
    }

    // Add the terminating null byte
    string[i] = '\0';
    return 0;
}

uint8_t new_position(uint8_t *pos, uint8_t direction)
{
    uint8_t newpos;
    uint8_t upd = 1;
    int8_t x0;
    int8_t y0;
    int8_t x1;
    int8_t y1;

    x0 = *pos % XLIM;
    y0 = *pos / XLIM;

    #if DEBUG
    printf("At position (%2d, %2d)... ", x0, y0);
    #endif

    switch (direction) {
        case 0: // NW
            #if DEBUG
            printf("Moving NW... ");
            #endif
            x1 = x0 - 1;
            y1 = y0 - 1;
            break;
        case 1: // NE
            #if DEBUG
            printf("Moving NE... ");
            #endif
            x1 = x0 + 1;
            y1 = y0 - 1;
            break;
        case 2: // SW
            #if DEBUG
            printf("Moving SW... ");
            #endif
            x1 = x0 - 1;
            y1 = y0 + 1;
            break;
        case 3: // SE
            #if DEBUG
            printf("Moving SE... ");
            #endif
            x1 = x0 + 1;
            y1 = y0 + 1;
            break;
        default: // Should never happen
            #if DEBUG
            printf("INVALID DIRECTION %d!!!", direction);
            #endif
            x1 = x0;
            y1 = y0;
            break;
    }

    // Limit the range of x1 & y1
    if (x1 < 0) {
        x1 = 0;
    } else if (x1 >= XLIM) {
        x1 = XLIM - 1;
    }

    if (y1 < 0) {
        y1 = 0;
    } else if (y1 >= YLIM) {
        y1 = YLIM - 1;
    }

    newpos = y1 * XLIM + x1;
    #if DEBUG
    printf("New position (%2d, %2d)... ", x1, y1);
    #endif

    if (newpos == *pos) {
        #if DEBUG
        printf("NO CHANGE");
        #endif

        upd = 0;
    } else {
        *pos = newpos;
    }

    #if DEBUG
    printf("\n");
    #endif

    return upd;
}

void drunken_walk(void)
{
    uint8_t pos;
    uint8_t upd;
    uint16_t idx;
    uint8_t i;
    uint8_t temp;

    pos = 76;
    for (idx = 0; string[idx]; idx++) {
        temp = string[idx];

        #if DEBUG
        printf("Walking character index %d ('%02x')...\n", idx, temp);
        #endif

        for (i = 0; i < 4; i++) {
            upd = new_position(&pos, temp & 3);
            if (upd) {
                array[pos]++;
            }
            temp >>= 2;
        }
    }

    array[pos] = 16; // End
    array[76] = 15; // Start
}

int main(int argc, char *argv[])
{
    if (argc != 2) {
        printf("Usage: bishop <hex string>\n");
        return 1;
    }

    if (convert_string(argv[1])) {
        printf("String conversion failed!\n");
        return 1;
    }

    drunken_walk();
    print_graph();

    return 0;
}

사용하려면 다음 단계를 수행하십시오.

  1. 소스 코드를 파일에 넣으십시오.
    • gedit 또는 자주 사용하는 텍스트 편집기를 엽니 다.
    • 위의 소스 코드를 붙여 넣습니다.
    • 로 저장하십시오 bishop.c.
  2. 실행중인 코드를 컴파일하십시오 gcc bishop.c -o bishop.
  3. 임의의 파일 (파일 myfile이있는 곳 ) 의 랜덤 아트를 봅니다 .

    ./bishop $(sha512sum myfile | cut -f1 -d ' ')
    
  4. 임의의 파일 아트를 보려면 사용자 정의 스크립트를 작성하십시오.

    • 로컬 이진 폴더가 없으면 만듭니다 :

      sudo mkdir -p /usr/local/bin
      
    • 스크립트를 사용하여 해당 폴더에 파일을 작성하십시오.

      sudo touch /usr/local/bin/randomart
      
    • 파일에 권한을 부여하십시오.

      sudo chmod 777 /usr/local/bin/randomart
      
    • gedit /usr/local/bin/randomart파일을 편집하고 붙여 넣기 위해 실행하십시오 .

      #!/bin/bash
      
      bishop $(sha512sum "$@" | cut -f1 -d ' ')
      
    • 파일을 저장하십시오.

    • 이전 단계에서 작성한 프로그램을 로컬 바이너리 폴더에 복사하십시오.

      sudo cp bishop /usr/local/bin/
      
    • 바이너리에 실행 권한을 부여하십시오.

      sudo chmod a+x /usr/local/bin/bishop
      
  5. 파일이있는 randomart myfile곳에서 실행중인 새로 작성된 프로그램을 사용하십시오 myfile.


1
매우 인상적
AB

2

OpenSSH Keys와 Drunken Bishop 페이지 는 알고리즘 작동 방식에 대한 좋은 소개를 제공합니다.

자세한 내용은
술취한 주교 : OpenSSH 지문 시각화 알고리즘 분석 에서 찾을 수 있습니다 .

이 주제는
"해시 시각화 : 실제 보안을 향상시키는 새로운 기술", Perrig A. and Song D., 1999, 암호 기술 및 전자 상거래에 관한 국제 워크샵 (CrypTEC '99) 에서보다 일반적인 형태로 논의됩니다 . ) " .


JPG 파일과 같은 공개 ssh 키가 아닌 파일의 MD5 체크섬을 생성 할 수 있습니다. 해당 MD5의 randomart를 어떻게 얻을 수 있습니까?
Tulains Córdova

+10 : 시작점을 알려 주셨습니다. ;-)
Helio
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.