“Wie man ein Verschlüsselungsprogramm in Python erstellt” Code-Antworten

Wie man ein Verschlüsselungsprogramm in Python erstellt

a = input("Text: ")
y = ""
z = int(input("Complexity (250 is recommended): "))
for i in range(0, len(a)):
  y = y + (chr(ord(a[i]) + z))
print(y)
BamBoom

Verschlüsselung mit Python

#Made by myself

import random

text = input ( "Enter text: " )

result = ""
private_key = ""

for i in text:

    rand = random.randint ( 1, 125 )
    en = rand + ord ( i )
    en = chr ( en )
    en = str ( en )

    private_key = private_key + str ( rand ) + " "

    result = result + en

print ( "\nPublic key:", result )
print ( "Private key:", private_key )
Cooperative Cardinal

Ähnliche Antworten wie “Wie man ein Verschlüsselungsprogramm in Python erstellt”

Fragen ähnlich wie “Wie man ein Verschlüsselungsprogramm in Python erstellt”

Weitere verwandte Antworten zu “Wie man ein Verschlüsselungsprogramm in Python erstellt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen