algorithm encrypted data string
Answers
Answer:
For AES, this value must be the same encryption key that was used to encrypt the string-expression to obtain the original value that was encrypted. ... The data is encrypted using the AES algorithm. If algorithm-format is not specified, then AES is used by default.
Mark me Brainliest!!!
Language used: Python Programming
Program:
n=int(input())
string = input()
encryptedstring=""
for i in string:
encryptedstring = encryptdstring + chrr( ord(i)+ n)
#erase one r in chrr
print(encryptedstring)
Input:
3
as3gAsd
Output:
dv6jDvg
Learn more:
Write a Python function sumsquare(l) that takes a nonempty list of integers and returns a list [odd,even], where odd is the sum of squares all the odd numbers in l and even is the sum of squares of all the even numbers in l.
brainly.in/question/15473120
Python program to find absolute difference between the odd and even numbers in the inputted number.
brainly.in/question/11611140