Would this decryption decrypt this encryption?
encryption:
push eax
and eax,0xAA
not al
mov edx,eax
pop eax
and eax,0x55
xor ecx,edx
xor ecx,eax
rol cl,1
rol cl,1
mov eax,ecx
sub al,0x20
decryption:
add al, 0x20
mov eax, ecx
ror cl, 1
ror cl, 1
xor ecx, eax
xor ecx, edx
and eax, 0x55
pop eax
mov edx, eax
not al
and eax, 0xAA
push eax