369562a1e8a6a794167496f2cb9e225d4cf42b10,ciphers/caesar_cipher.py,,main,#,40

Before Change


        elif choice == "2":
            input_string = input("Please enter the string to be decrypted: ")
            key = int(input("Please enter off-set between 1-94: "))
            if key in range(1, 95):
                print(decrypt(input_string, key))
        elif choice == "3":
            input_string = input("Please enter the string to be decrypted: ")
            brute_force(input_string)
            main()

After Change


            print(encrypt(input_string, key))
        elif choice == "2":
            input_string = input("Please enter the string to be decrypted: ")
            key = int(input("Please enter off-set: ").strip())

            print(decrypt(input_string, key))
        elif choice == "3":
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: TheAlgorithms/Python
Commit Name: 369562a1e8a6a794167496f2cb9e225d4cf42b10
Time: 2020-05-07
Author: 49735721+mrmaxguns@users.noreply.github.com
File Name: ciphers/caesar_cipher.py
Class Name:
Method Name: main


Project Name: Logan1x/Python-Scripts
Commit Name: 2ef5c047b4296a807eea8366f67d7f271f0d47de
Time: 2020-06-28
Author: 59202862+Monsieurvishal@users.noreply.github.com
File Name: bin/password-strength-checker.py
Class Name:
Method Name: pass1


Project Name: QUANTAXIS/QUANTAXIS
Commit Name: b820493a9583f1a335cd8f49250c8804f0b5d8c1
Time: 2017-06-08
Author: yutiansut@qq.com
File Name: QUANTAXIS/QABacktest/QAAnalysis.py
Class Name:
Method Name: QA_backtest_calc_benchmark