इस कुंजी सिफर को लागू करें


13

इस कुंजी सिफर को लागू करें

लक्ष्य

एक निश्चित सिफर लागू करने के लिए एल्गोरिथ्म (एल्गोरिथम अनुभाग में समझाया गया) का उपयोग करें।

कार्यक्रम को एसटीडीआईएन या निकटतम उपलब्ध समतुल्य से इनपुट पढ़ना चाहिए, सिफरटेक्स्ट और एक कुंजी उत्पन्न करने के लिए एल्गोरिथ्म का उपयोग करना चाहिए।

सिफरटेक्स्ट और कुंजी को STDOUT या निकटतम उपलब्ध समकक्ष के लिए लिखा जाएगा। किसी भी प्रारूप को अनुमति दी जाती है, जब तक वह सिफरटेक्स्ट और कुंजी को आउटपुट करता है।

कलन विधि

स्ट्रिंग में वर्णों को संबंधित ASCII मानों में परिवर्तित करें। उदाहरण के लिए:

Hello -> 72 101 108 108 111

अगला, आपको 0-9 की सीमा में यादृच्छिक संख्या के साथ स्ट्रिंग के रूप में एक कुंजी उत्पन्न करने की आवश्यकता होगी।

Hello -> 62841

स्ट्रिंग के ASCII मूल्यों के लिए यादृच्छिक संख्या अनुक्रम में पूर्णांक जोड़ें। उपरोक्त उदाहरणों में, 72 78 हो जाएंगे, और 101 104 बन जाएंगे।

72 + 6 = 78, 101 + 2 = 103, 108 + 8 = 116, etc

इसके बाद, नए मानों को वापस वर्णों में बदलें। उपरोक्त उदाहरणों में, पाठ Helloबन गया है Ngtpp

उदाहरण

(ये केवल उदाहरण हैं कि आउटपुट कैसा दिख सकता है। आउटपुट अलग-अलग हो सकता है और अलग-अलग होता है।)

Hello World

Lfrlu)_supg
41606984343

This will be encoded

Zhjs$~koo gj$iuhofgj
60104723305544750226

नियम

  • आप मान सकते हैं कि इनपुट में az, AZ और रिक्त स्थान में केवल वर्ण होंगे।
  • प्रस्तुतियाँ पूर्ण कार्यक्रम या कार्य होने चाहिए।
  • प्रस्तुतियाँ बाइट्स में बनाई जाएंगी।
  • मानक खामियों को मना किया जाता है।
  • यह कोड-गोल्फ है, इसलिए सबसे छोटा कोड जीतता है।

(यह मेरी पहली चुनौतियों में से एक है, अगर इसमें कुछ गड़बड़ है, तो मुझे यह बताने के लिए स्वतंत्र महसूस करें कि मैं इसे कैसे सुधार सकता हूं।)


5
यह चुनौती मुझे अच्छी लगती है, एक दो विचारों को छोड़कर। 1. एक पूर्ण कार्यक्रम के बजाय एक फ़ंक्शन की अनुमति है? एक संबंधित प्रश्न यह है कि क्या मुद्रित के बजाय मूल्यों को वापस किया जा सकता है? 2. आपने कहा preferably with the format (ciphertext)\n(key)."पसंदीदा विशेषताएं" और कोड गोल्फ बहुत अच्छी तरह से मिश्रण नहीं करते हैं। आपके लिए यह अनिवार्य होना चाहिए या अन्य आउटपुट स्वरूप की अनुमति देनी चाहिए। 3. क्या कुंजी को रिक्त स्थान के बिना मुद्रित करना होगा? सूची प्रारूप में इसे छापने के बारे में क्या है, उदा [0, 5, 2, ...]?
जेम्स

क्या कुंजी में प्रमुख शून्य हो सकते हैं?
13

1
पहली चुनौती अच्छी है लेकिन मैं सख्त IO प्रारूपों पर इतना निश्चित नहीं हूं। आमतौर पर कार्यों की अनुमति होती है और आमतौर पर उत्तर स्वीकृत IO विधियों में से एक से पढ़ सकते हैं। इसमें आइटम्स के साथ एक सरणी आउटपुट करना शामिल है
डाउनगोट

1
क्या कुंजी के अंकों को एक समान वितरण के साथ उत्पन्न किया जाना है?
डेनिस

1
उह ... १०१ + २, १०३ है, १०४ नहीं है। :-)
यतिसीजीएन

जवाबों:


5

जेली , 12 9 बाइट्स

⁵ṁX€’Ṅ+OỌ

इसे ऑनलाइन आज़माएं!

यह काम किस प्रकार करता है

⁵ṁX€’Ṅ+OỌ  Main link. Argument: s (string)

⁵             Set the return value to 10.
 ṁ            Mold; create an array of 10's with the length of s.
  X€          Pseudo-randomly pick a integer between 1 and 10, for each 10.
    ’         Decrement, so the integers fall in the range [0, ..., 9].
     Ṅ        Print the key, as an array, followed by a linefeed.
      +O      Add the integers to the ordinals (code points) of s.
        Ọ     Unordinal; convert back to characters.

5

पायथन 3, 130 बाइट्स

बग को इंगित करने के लिए @Rod का धन्यवाद

from random import*
def f(x):l=10**len(x);k=str(randint(0,l-1)+l)[1:];print(''.join(chr(ord(i)+int(j))for i,j in zip(x,k))+'\n'+k)

एक फ़ंक्शन जो एक स्ट्रिंग के रूप में तर्क के माध्यम से इनपुट लेता है और STDOUT को प्रिंट करता है।

यह काम किस प्रकार करता है

from random import*  Import everything from the random module
def f(x):            Function with input string x
l=10**len(x)         Define l for later use as 10^length(x)
randint(0,l-1)+l     Generate a random integer in the range [0, l-1] and add l, giving a
                     number with l+1 digits...
k=str(...)[1:]       ...convert to a string and remove the first character, giving a key of
                     length l that can include leading zeroes, and store in k
for i,j in zip(x,k)  For each character pair i,j in x and k:
chr(ord(i)+int(j))    Find the UTF-8 code-point (same as ASCII for the ASCII characters),
                      add the relevant key digit and convert back to character
''.join(...)         Concatenate the characters of the ciphertext
print(...+'\n'+k)    Add newline and key, then print to STDOUT

Ideone पर इसे आज़माएं


आपकी कुंजी जनरेटर 0. से शुरू होने वाली चाबियाँ उत्पन्न नहीं करती है। 10 के एक कारक द्वारा सीमाओं को बढ़ाना और 1 अंक को दूर करना चाहिए: m=10**len(x);k=str(randint(m,m*10))[1:];और आप इस प्रक्रिया में एक बाइट को भी बचाते हैं c:
Rod

@Rod बग इंगित करने के लिए धन्यवाद। हालांकि, किसी भी बाइट को नहीं बचाएगा, क्योंकि randintसमावेशी है, जिसका अर्थ है कि आपको करने की आवश्यकता होगी m*10-1। मैं बस एक ही बाइट गिनती के लिए इसे ठीक करने का एक तरीका सोचा है।
TheBikingViking

3

पायथ - 16 बाइट्स

आउटपुट प्रारूपों पर ओपी द्वारा निर्णय की प्रतीक्षा की जा रही है।

sCM+VCMQKmOTQjkK

टेस्ट सूट


मैंने प्रारूप पर फैसला किया।
m654

3

दरअसल, 17 बाइट्स

;`X9J`M;(O¥♂cΣ@εj

इसे ऑनलाइन आज़माएं!

स्पष्टीकरण:

;`X9J`M;(O¥♂cΣ@εj
;                  dupe input
 `X9J`M            for each character in input copy:
  X9J                discard the character, push a random integer in [0, 9]
       ;           duplicate the offset array
        (O         bring input to top of stack, ordinal array
          ¥♂c      pairwise addition with offset array, turn each ordinal into a character
             Σ     concatenate
              @εj  concatenate the copy of the offset array


2

MATL, 13 बाइट्स

"10r*]v!kGy+c

आउटपुट इस तरह दिखता है:

9 5 8 2 1
Qjtnp

इसे ऑनलाइन आज़माएं!

स्पष्टीकरण:

"    ]          % For each character:
 10             % Push a 10 onto the stack
   r            % Push a random float in [O, 1)
    *           % Multiply. This essentially the same thing as pushing a number in [0, 10)
      v!k       % Join all of these together, and take the floor
         G      % Push the input again
          y     % Duplicate the array of random numbers
           +    % And add these together. Since MATL treats strings as an array of chars, we don't need to explicitly convert types
            c   % Display as string

मुझे यकीन नहीं है कि अगर यह सही प्रारूप है ...
लीक नून

@ लीक नन मैंने नियमों को थोड़ा बदल दिया।
1565 पर m654

@ m654 आपने कहाँ कहा कि मूल्यों के बीच रिक्त स्थान हो सकते हैं?
लीक नुन् १०

@LeakyNun मूल रूप से उनके खिलाफ एक नियम था लेकिन मैंने इसे हटा दिया।
1565 पर m654

1
लूप का उपयोग करने के लिए अच्छा विचार है। यह वास्तव rYr
लुइस मेंडो

2

PowerShell v2 +, 79 77 बाइट्स

param($n)-join(($x=[char[]]$n|%{0..9|Random})|%{[char]($_+$n[$i++])});-join$x

इनपुट लेता है $n, हर चरित्र पर लूप करता है और प्रत्येक पुनरावृत्ति Randomसे एक तत्व प्राप्त 0..9करता है। उन नंबरों (एक सरणी के रूप में) को स्टोर करें $x। उस सरणी को दूसरे लूप में रखता है। प्रत्येक पुनरावृत्ति, वर्तमान तत्व को लेती है $_, इसे स्थितिबद्ध चार से बाहर निकाल देती है $n(अंतर्निहित चार-से-इंट कास्ट), फिर पुन: कलाकारों के रूप में [char]। छोड़ देता है कि पाइपलाइन पर। यह -joinशब्द बनाने के लिए एक साथ parens और ed में संक्षिप्त है। वह पाइपलाइन पर छोड़ दिया गया है। इसके अतिरिक्त, संख्या $xभी -joinएक साथ संपादित की जाती है और पाइपलाइन पर छोड़ दी जाती है। Write-Outputनिष्पादन के अंत में इन्हें स्पष्ट रूप से मुद्रित किया जाता है , जिसके परिणामस्वरूप इन्हें डिफ़ॉल्ट रूप से एक नई पंक्ति के साथ मुद्रित किया जाता है।

उदाहरण

PS C:\Tools\Scripts\golfing> .\implement-this-key-cipher.ps1 'Hello World!'
Lhoot(Yt{mf"
433358259121

2

सी #, 252 247 245 232 216 बाइट्स

आकार अन्य समाधानों की तुलना में बहुत बुरा है, लेकिन फिर भी ...

using System;using System.Linq;class p{static void Main(){var c="";var i=Console.ReadLine();var r=new Random();for(int b=0;b++<i.Count();){int d=r.Next(10);Console.Write((char)(i[b]+d));c+=d;}Console.Write("\n"+c);}}

यह किसी कोडगॉफ़ का मेरा दूसरा उत्तर है और मैं सी # पर विचार करने वाला एक शुरुआती व्यक्ति हूं, इसलिए मैं सुनना चाहता हूं कि इसे कैसे छोटा किया जाए :)

Ungolfed:

using System;
using System.Linq;

class p
{
    static void Main()
    {
        var c = "";
        var i = Console.ReadLine();
        var r = new Random();
        for (int b = 0; b++ < i.Count();)
        {
            int d = r.Next(10);
            Console.Write((char)(i[b] + d));
            c += d;
        }
        Console.Write("\n" + c);
    }
}
  • सहेजे गए 5 बाइट्स @FryAmTheEggman की बदौलत
  • सहेजे गए 2 बाइट्स @theLambGoat की बदौलत
  • staticकक्षा पी से हटाकर 7 बाइट्स बचाए
  • @Milk के लिए 24 बाइट्स से बचा लिया गया

1
चाल अन्य भाषाओं के साथ तुलना करने के लिए नहीं है;) मैं सी # गोल्फ में विशेष रूप से अच्छी तरह से वाकिफ नहीं हूं, लेकिन क्या आप b++<i.Count()तीसरे क्लर्क को खाली कर सकते हैं और छोड़ सकते हैं ? इसके अलावा, मुझे नहीं लगता कि आपको एक नई रूपरेखा की आवश्यकता है, इसलिए अंतिम कॉल इसके बजाय WriteLineहो सकती है Write
FryAmTheEggman

मैं सी # में अच्छी तरह से वाकिफ नहीं हूं, लेकिन मुझे लगता है कि आप डी की घोषणा तक = r.Next (10) को स्थानांतरित कर सकते हैं और लेखन में कोष्ठक के सेट पर बचा सकते हैं। या यादृच्छिक एक int वापस नहीं करता है ताकि आप ऐसा नहीं कर सकें?
theLambGoat

मुझे लगता है कि मैं ऐसा कर सकते हैं, मुझे जाँच करें
टॉम Doodler

आप के साथ प्रकार बदल सकते हैं var। यानी- कुछ बाइट्स शेव करने के var c=बजाय string c=
दूध

Console.ReadLine()स्ट्रिंग के रूप में परिणाम क्यों नहीं छोड़ते ? i.Lengthसे कम है i.Count(), आपको System.Linq की आवश्यकता नहीं होगी। स्ट्रिंग में एक चार सूचकांक है। इसके अलावा लूप में नई रैंडम ऑब्जेक्ट बनाना कम बाइट्स है new Random().Next(10):।
दूध

2

सीजेएम, 11 बाइट्स

Nq{Amr_o+}/

इसे ऑनलाइन आज़माएं!

यह काम किस प्रकार करता है

N            Push a linefeed on the stack.
 q           Read all input from STDIN and push it on the stack.
  {      }/  For each character in the input:
   Amr       Pseudo-randomly pick an integer in [0 ... 9].
      _o     Print a copy.
        +    Add the integer to the character.
             (implicit) Print the linefeed, followed by the modified characters.

2

05AB1E , 18 17 बाइट्स

vžh.RDyÇ+ç`?}J¶?,

व्याख्या

v           }      # for each char in input
 žh.RD             # push 2 copies of a random number in [0..9]
      yÇ+          # add 1 copy to the current chars ascii value
         ç`?       # convert to char, flatten and print
             J     # join stack (which contain the digits of the key)
              ¶?,  # print a newline followed by the key

इसे ऑनलाइन आज़माएं


2

पायथन 3, 112 बाइट्स

c एक ऐसा फंक्शन है जो एन्क्रिप्टेड टेक्स्ट और की को वापस करता है

from random import*
c=lambda t:map(''.join,zip(*[(chr(a+b),str(b))for a,b in((ord(i),randint(0,9))for i in t)]))

यहां एक कोड है जो समान कार्य करता है और थोड़ा अधिक पठनीय है

def encrypt(text):
    # keep the codes of the letters in the input and a random key
    # that will be used later to encrypt this letter
    letter_and_key = ((ord(letter),randint(0,9)) for letter in text)

    # encrypt the letter and keep the key used as a string
    output_and_key = [(chr(letter_code+key), str(key))
                      for letter_code, key in letter_and_key]

    # At this point the values are kept in the format:
    # [(firstletter, firstkey), (secondletter, secondkey), ...]

    # to reorder the list to be able to output in the format "text key"
    text, key = map(''.join, zip(*output_and_key))

    # same as print(*output_and_key)
    return text, key

आउटपुट:

>>> text, key = c('Hello World')
>>> print(text, key, sep='\n')
Liuot#`oylk
44935390707

इस साइट पर आपका स्वागत है!
जेम्स

1

PHP, 63 86 82 बाइट्स

संपादित करें: कुंजी प्रिंट करना भूल गया ...

मुझे 4 बाइट्स बचाने के लिए एलेक्स हॉवान्स्की का धन्यवाद।

for(;$i<strlen($a=$argv[1]);$s.=$r)echo chr(ord($a[$i++])+$r=rand(0,9));echo"
$s";

इनपुट एक कमांड लाइन तर्क के माध्यम से दिया जाता है। स्ट्रिंग में प्रत्येक वर्ण लेता है और 0-9 से अपने ASCII कोड में एक यादृच्छिक int जोड़ता है, फिर कोड को ASCII में वापस परिवर्तित करता है। हर रैंडम नंबर को जोड़ दिया जाता है $s, जो अंत में छपा होता है।


आपको कुंजी को भी प्रिंट करना होगा।
एलेक्स हॉवान्स्की

$s.=$rलूप के लिए 2 सेमी के बाद आप एक बाइट की बचत कर सकते हैं, क्योंकि आप इसकी अनुगामी अर्ध को डंप कर सकते हैं। फिर आपका लूप केवल एक स्टेटमेंट होगा जिससे आप रैपिंग ब्रेसेस को काट सकते हैं, जिससे 2 और बाइट्स बचेंगे। फिर अंत में, आप एक और बाइट के लिए ऑपरेटर को $sबचाने वाले उद्धृत स्ट्रिंग के अंदर रख सकते हैं .। :)
एलेक्स हावान्स्की

@AlexHowansky: यह बहुत सच है। साभार
बिजनेस कैट

1

जे, 32 बाइट्स

<@:e,:~[:<[:u:3&u:+e=.[:?[:$&10#

अजगर समतुल्य:

from random import randint
def encrypt(message):
    rand_list = list(map(lambda x: randint(0, 9), range(len(message))))
    return (''.join(list(map(lambda x,y: chr(x+y), rand_list, map(ord, message)))), rand_list)


0

पर्ल, 65 बाइट्स

for(split'',$ARGV[0]){$;.=$a=int rand 9;$b.=chr$a+ord}say"$b\n$;"

अंत में एक नई लाइन के बिना इनपुट कैसे प्राप्त करें, यह पता लगाने के लिए मुझे कुछ समय लगा। इसे कमांड लाइन आर्ग के रूप में लेता है


आपके समाधान में कुछ समस्याएं हैं। इनपुट एसटीडीआईएन नहीं पढ़ा जाता है, $;खाली नहीं शुरू होता है , इसलिए यह पुरानी सामग्री को प्रिंट करता है और रैंड कभी भी उत्पन्न नहीं कर सकता है। 9. वे ठीक करना आसान है और
एसटीडीआईएन

@ टोनहोस आमतौर पर इनपुट आवश्यकताएं ढीली होती हैं और एसटीडीआईएन पर आर्ग स्वीकार्य होते हैं और एसटीडीआईएन से इनपुट कम होने के कारण, इसमें से नईलाइन को हटाने में अधिक समय लगता है। और जबकि रैंड संख्या <9 उत्पन्न करता है, पर्ल का अंतर विधि फर्श के बजाय गोल है इसलिए कुछ भी = = 8.5 9 तक समाप्त होना चाहिए
लैम्बगैट

इनपुट आवश्यकताएं आमतौर पर ढीली होती हैं, लेकिन यहां ऐसा नहीं था। STDIN से नॉन न्यूलाइन प्राप्त करना आसान है <>=~/./g:। और नहीं, intपर्ल में 0 की ओर छोटा हो जाता है, यह गोल नहीं होता है। perl -wle 'print int 8.6'आउटपुट8
टन हास्पेल

0

पायथन 2, 84 99 बाइट्स

def f(x):y=`id(x)**len(x)`[1:len(x)+1];return''.join(map(chr,[ord(a)+int(b)for a,b in zip(x,y)])),y

id()यादृच्छिक संख्या उत्पन्न करने के लिए स्ट्रिंग के मूल्य का उपयोग करता है ।

कोशिश करो


आपको कुंजी के साथ-साथ सिफरटेक्स्ट को भी आउटपुट करना होगा।
TheBikingViking

@BikingViking नहीं जानता कि मैं कैसे चूक गया।
साभार

मुझे लगता है कि यह मेरे पायथन उत्तर के पुराने संस्करण के समान ही समस्या है; यह कभी भी प्रमुख शून्य के साथ चाबियाँ पैदा नहीं करता है।
TheBikingViking

@ TheBikingViking फिर से तय किया
एटलसोलॉजिस्ट

बदलने के map(chr,[ord(a)+int(b)for a,b in zip(x,y)])लिए map(lambda x,y:chr(ord(x)+int(y)),x,y)? कि कुछ बचा जाना चाहिए
ljeabmreosn

0

सेनवा , 74 बाइट्स

यहाँ मैंने सबसे छोटा कार्यक्रम बनाया है:

2'(`>0.>{@}0'{v}2-2'0,{@}1'{v}0'{+}{'}9%+{^}{1-}1'"{+}{~}>$10.~0'2+"0,-:>$

थोड़ा स्पष्टीकरण? (नोट: बीएम का मतलब है बैक-मेमोरी ):

// === Input and informations storing ===

2'  // Go to the 3rd cell (the two first will be used to store informations)
(   // Ask the user for a string (it will be stored as a suite of ASCII codes)
`   // Go the end of the string
>   // Make a new cell
0.  // Put a 0 to mark the end of the string
>   // Make a new cell, here will be stored the first random number
{@} // Store its adress in BM
0'  // Go to the 1st cell
{v} // Paste the adress, now the 1st cell contains the adress of the first random number
2-  // Subtract 2 because the string starts at adress 2 (the 3rd cell)
2'  // Go to the 3rd cell (where the string begins)

// === String encryption and displaying ===

0,  // While the current cell doesn't contain 0 (while we didn't reach the string's end)
  {@}  // Store the character's adress into the memory
  1'   // Go to the 2nd cell
  {v}  // Paste the value, now the 1st cell contains the adress of the current char
  0'   // Go to the 1st cell
  {+}  // Add the adress of the first random number to the current char adress
  {'}  // Go to this adrses
  9%+  // A random number between 0 and 10
  {^}  // Store this number in BM
  {1-} // Decrease BM (random number between 0 and 9)
  1'   // Go to the 1st cell
  "    // Go to the adress pointed by the cell (the adress of the current char)
  {+}  // Add it to the random number value
  {~}  // Display it as an ASCII character
  >    // Go to the next cell (the next character)
$   // End of the loop
10. // Set the new line's ASCII code into the current cell (which is now useless, so it can be overwritten)
~   // Display the new line
0'  // Go to the first cell
2+  // Add 2 to the adress, because we are not in the string loop : we cancel the 2 substraction
"   // Go to the pointed adress (the first random number's one)

// === Display the random numbers ===

0,  // While we didn't reach the end of the random numbers suite
    // That was why I stored numbers between 1 and 10, the first equal to 0 will be the end of the suite
  - // Decrease it (number between 0 and 9)
  : // Display the current random number as an integer
  > // Go to the next cell (the next number)
$ // End of the loop

यह अब बड़ा प्रतीत होता है, सच: पी? हो सकता है कि इस कोड को ऑप्टिमाइज़ करना संभव हो, लेकिन फिलहाल मुझे जो सबसे छोटा मिला है।


0

सी #, 174 बाइट्स

using static System.Console;class b{static void Main(){var c=new System.Random();var d="\n";foreach(var e in ReadLine()){var f=c.Next(10);Write((char)(e+f));d+=f;}Write(d);}}

Ungolfed:

using static System.Console;

class b
{
    static void Main()
    {
        var c = new System.Random();
        var d = "\n";

        foreach (var e in ReadLine())
        {
            var f = c.Next(10);
            Write((char)(e + f));
            d += f;
        }

        Write(d);
    }
}

बहुत सीधा, वास्तव में।


0

पर्ल 6: 55 या 70 बाइट्स

एक अनाम फ़ंक्शन के रूप में जो एक स्ट्रिंग पैरामीटर लेता है, और दो स्ट्रिंग्स (54 वर्ण, 55 बाइट्स) की एक सूची देता है :

{my @n=^9 .roll(.ords);(.ords Z+@n)».chr.join,@n.join}

एक प्रोग्राम के रूप में जो STDIN से पढ़ता है और STDOUT को लिखता है (69 अक्षर, 70 बाइट्स) :

my @a=get.ords;my @n=^9 .roll(@a);say (@a Z+@n)».chr.join;say @n.join
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.