«cipher» 태그된 질문

고전적인 (펜과 종이) 암호를 사용하여 메시지를 인코딩하는 것과 관련된 문제. AES와 같은 최신 암호의 경우 [encryption] 태그를 대신 사용하십시오.

16
증분 암호
이 작업은 다소 단순하며 세 가지 "연산자"문자를 사용합니다. 당신의 작업은, 사용하여 인코딩하려면 다음 작업을 수행, 문자의 간단한 순서를 주어 <, >, *. 대문자 또는 소문자를 사용하도록 선택할 수 있으며 둘 다 처리 할 필요는 없습니다. 암호 설명 암호는 간단합니다. 증가 및 감소 조작을 사용 *하여 "제출"기능 을 사용하여 문자 1에서 …
19 code-golf  cipher 

14
자본 암호
귀하의 작업은 [32..126] 범위의 인쇄 가능한 ASCII 문자로 구성된 비어 있지 않은 문자열을 해독하는 것 입니다. 문자 당 문자열 문자 읽기 : 소문자로 된 문자를 발견 할 때마다 'A'로 시작하여 다음 문자를 대문자로 연결하십시오 대문자로 된 문자를 발견 할 때마다 소문자로 된 문자로 바꾸십시오 다른 문자는 특별한 처리가 필요하지 않으며 …

5
이진 컨벌루션
이진 컨벌루션은 숫자로 설명되며 숫자 M에 적용됩니다 N. 의 이진 표현에서 각 비트에 대해 M, 비트가 설정되면 ( 1), 출력의 대응하는 비트는 대응하는 비트에 인접한 2 개의 비트를 XOR 링함으로써 N(필요할 때 랩핑 ) 주어진다 . 비트가 설정되지 않은 경우 ( 0), 출력의 해당 비트는 해당 비트 in로 제공 N됩니다. …
15 code-golf  binary  integer  bitwise  code-golf  rational-numbers  code-golf  string  palindrome  code-golf  ascii-art  code-golf  code-golf  string  fibonacci  code-golf  math  sequence  code-golf  code-golf  string  palindrome  code-golf  string  code-golf  math  primes  source-layout  code-golf  sequence  binary  integer  code-golf  math  arithmetic  game  code-golf  restricted-source  palindrome  code-golf  restricted-source  palindrome  code-golf  combinatorics  binary  code-golf  string  math  code-golf  ascii-art  number  code-golf  cipher  code-golf  base-conversion  counting  code-golf  sequence  random  classification  code-golf  string  subsequence  code-golf  permutations  code-golf  string  code-golf  string  cipher  code-golf  kolmogorov-complexity  arithmetic  integer  code-golf  quine  markov-chain  code-golf  string  code-golf  code-golf  ascii-art  maze 

13
컴퓨터 암호
소개: 나는 한때 어렸을 때 컴파일 된 문서에 다양한 암호가 저장되어 있으며, 도전에 가장 적합하다고 생각되는 것을 선택했습니다 (너무 사소하지 않고 어렵지 않음). 대부분은 여전히 ​​샌드 박스에 있으며, 모두 게시할지 또는 일부만 게시할지 확실하지 않습니다. 그러나 여기에서 처음으로 일을 시작합니다. 컴퓨터 암호는 주어진 텍스트를 주어진 '무작위'문자 그룹으로 암호화합니다 length. 이러한 …

30
프라임 파워에서 프라임 복구
정의 : 소수 는 자연수이며 p n 형식으로 표현할 수있는 자연수입니다. 여기서 p는 소수이고 n은 자연수입니다. 작업 : 프라임 전력 p n > 1이 주어지면 프라임 p를 반환합니다. 테스트 케이스 : input output 9 3 16 2 343 7 2687 2687 59049 3 채점 : 이것은 code-golf 입니다. 바이트 단위의 …
13 code-golf  arithmetic  primes  king-of-the-hill  python  board-game  code-golf  number  subsequence  code-golf  ascii-art  code-golf  array-manipulation  decision-problem  grid  fastest-algorithm  logic-gates  logic  code-golf  cards  code-golf  rational-numbers  code-golf  math  number  sequence  code-golf  array-manipulation  integer  code-golf  number  array-manipulation  code-golf  number  sequence  decision-problem  code-golf  ascii-art  number  code-challenge  sequence  arithmetic  sorting  code-golf  date  fastest-algorithm  code-golf  string  number  random  combinatorics  code-golf  combinatorics  code-golf  ascii-art  base-conversion  code-golf  array-manipulation  code-golf  string  code-golf  string  number  arithmetic  code-golf  kolmogorov-complexity  code-golf  string  array-manipulation  json  code-golf  puzzle-solver  code-golf  binary  graph-theory  code-golf  arithmetic  haskell  code-golf  string  cipher  code-golf  code-golf  string  parsing  alphabet  code-golf  string  code-golf  ascii-art  code-golf  string  number  code-golf  string  balanced-string 

10
ASCII 홀수 / 짝수
아래 의사 코드를 통해 ASCII 홀수 / 짝수 암호 를 정의합니다 . Define 'neighbor' as the characters adjacent to the current letter in the string If the one of the neighbors is out of bounds of the string, treat it as \0 or null Take an input string For each …

13
피보나치 제품
양의 피보나치 수의 고유 한 합계로 0보다 큰 수를 분해 할 수 있습니다. 이 질문에서 우리는 가능한 가장 큰 양의 피보나치 수 를 반복적으로 빼서이 작업을 수행합니다 . 예 : 1 = 1 2 = 2 3 = 3 4 = 3 + 1 12 = 8 + 3 + …
13 code-golf  math  sequence  fibonacci  code-golf  word  code-golf  cipher  code-golf  string  math  subsequence  code-golf  regular-expression  code-golf  brainfuck  assembly  machine-code  x86-family  code-golf  math  factorial  code-golf  math  geometry  code-golf  math  arithmetic  array-manipulation  math  number  optimization  stack  metagolf  code-golf  tips  assembly  code-golf  tips  lisp  code-golf  number-theory  path-finding  code-golf  number  sequence  generation  code-golf  math  geometry  code-golf  grid  permutations  code-golf  code-golf  graphical-output  geometry  fractal  knot-theory  code-golf  math  arithmetic  code-golf  interpreter  balanced-string  stack  brain-flak  code-golf  math  set-theory  code-golf  math  array-manipulation  code-golf  code-golf  string  natural-language  code-golf  code-golf  math  linear-algebra  matrix  code-golf  string  encode 

14
시계 (음역) 암호
소개: 나는 한때 어렸을 때 컴파일 된 문서에 다양한 암호가 저장되어 있으며, 도전에 가장 적합하다고 생각되는 것을 선택했습니다 (너무 사소하지 않고 어렵지 않음). 대부분은 여전히 ​​샌드 박스에 있으며, 모두 게시할지 또는 일부만 게시할지 확실하지 않습니다. 다음은 세 번째로 가장 쉬운 방법입니다 ( 이전에 게시 한 Computer Cipher 및 Trifid Cipher …

2
Marcel Proust 및 Markov 해독 보안 서비스의 T9 텍스트
이 문제는 더 이상이 될 수있는 것처럼 Pythonesque을 정신 ... 마르코프 체인 또는 암호화 기술에 대한 사전 지식은 필요하지 않습니다. 영국 보안 서비스 M1S로부터 중요한 정보를 얻어야하는 스파이입니다. M1S의 에이전트는 Wi-Fi 신호를 가로 챌 수 있고 Android / iOS 보안 취약점을 악용 할 수 있다는 점을 잘 알고 있으므로 모두 …

6
레일 펜스 암호
두 개의 프로그램을 작성하십시오 .-하나는 문자열과 키를 읽고 해당 키를 사용하여 문자열을 레일 울타리 암호로 인코딩합니다. -마찬가지로 역 기능을위한 프로그램을 작성하십시오 : 키를 사용하여 레일 펜스를 해독하십시오. 레일 펜스 암호가 무엇인지 모르는 사람들은 기본적으로 나선형으로 선형 패턴을 만드는 방식으로 일반 텍스트를 작성하는 방법입니다. 예-키 3을 사용하여 "FOOBARBAZQUX"가 레일 피어싱 된 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.