Re: 3svgl/rhzp()gz12kmuuzs5fyeseeneymi.
gmferng
gmferng



# stupid python 3 program for keyboard caesar shift
# Letter to number
qwerty = {
"q": 0,
"w": 1,
"e": 2,
"r": 3,
"t": 4,
"y": 5,
"u": 6,
"i": 7,
"o": 8,
"p": 9,
"a": 10,
"s": 11,
"d": 12,
"f": 13,
"g": 14,
"h": 15,
"j": 16,
"k": 17,
"l": 18,
"z": 19,
"x": 20,
"c": 21,
"v": 22,
"b": 23,
"n": 24,
"m": 25,
}
# Number to letter
numqwerty = {
0:"q",
1:"w",
2:"e",
3:"r",
4:"t",
5:"y",
6:"u",
7:"i",
8:"o",
9:"p",
10:"a",
11:"s",
12:"d",
13:"f",
14:"g",
15:"h",
16:"j",
17:"k",
18:"l",
19:"z",
20:"x",
21:"c",
22:"v",
23:"b",
24:"n",
25:"m",
}
stringToTest = input("Insert goldstinger string: ")
result = ""
counter = 0
for letter in stringToTest:
if letter == " ":
result += " "
continue
if counter == 2:
shift = 13
counter = 0
else:
shift = 14
counter += 1
index = qwerty[letter]
total = index + shift
if total > 25:
total = total - 26
result += numqwerty[total]
print(result)
>>> ================================ RESTART ================================ >>> Insert goldstinger string: zm bakcag ova ohvor jezb x fzyt cbk kcl xsg wzanjgn kwxzb vsn ijgnxjb if anyone can crack this i will pay you one hundred thous and credits
For the duration of this code, . = * 3this/code()is12almost5uncrackable. thiscodeisalmostuncrackable (12 x 3) / 5 = 7.2 7 - qwerty keyboard shift 5 degrees of separation 1 shift per degree this1odei1almo1tunc1acka1le 3svgl/rhzp()gz12kmuuzs5fyeseeneymi. if anyone can crack this I will pay you one hundred thousand credits. 11 + (15 x 4) + 8 - 13 - (5 / 3) = 64.33333continuous -if+anyone-can11crack5this3I8will15pay+you4one()hundred/thous()and13credits. ifanyonecancrackthisIwillpayyouonehundredthousandcredits if_ny_ne_an_ra_kt_is_wi_lp_yy_uo_eh_nd_ed_ho_sa_dc_ed_ts zm_ak_ag_va_hv_rj_zb_fz_tc_kk_lx_gw_an_gn_wx_bv_ni_gn_jb -zm+_ak_ag-_va11_hv_r5j_zb3_8fz_t15c_k+k_l4x_g()w_an_gn/_wx_b()v_n13i_gn_jb. -if+anyone-can11crack5this3I8will15pay+you4one()hundred/thous()and13credits. -zm+bakcag-ova11ohvok5jezb3x8fzyt15cbk+kcl4xsg()wzanjgn/kwxzs()vsn13ijgnxjb. -zm+bakcag-ova11ohvor5jezb3x8fzyt15cbk+kcl4xsg()wzanjgn/kwxzd()vsn13ijgnxjb. -__-:__:__-:__--:__;_-_:__-:-__:_--_:_-_:_-_:_--_:__:__-:__:_--_:_--_:__:__- 12 - qwerty keyboard shift (IGNORED 64, ROT13) 3 degrees of separation 1 shift per degree a=v b=p c=i d=n e=g f=m g=q h=w i=z j=e k=r l=t m=s n=a o=x p=c q=d r=h s=b t=j u=l v=o w=f x=u y=k z=y qwertyuiopasdfghjklzxcvbnm






Comment