Is your feature request related to a problem? Please describe.
Yes, I would like to add an algorithm that encrypts and decrypts a given string using XOR shifting plaintext technique, in Python, Java, C and C++
Describe the solution you'd like
It is a cipher algorithm, based on hexadecimal strings that is implemented by XORing the given plaintext, N number of times where N is its length.
And every next XOR operation is done after shifting the consecutive plain text entry to the right.
Is your feature request related to a problem? Please describe. Yes, I would like to add an algorithm that encrypts and decrypts a given string using XOR shifting plaintext technique, in Python, Java, C and C++
Describe the solution you'd like It is a cipher algorithm, based on hexadecimal strings that is implemented by XORing the given plaintext, N number of times where N is its length. And every next XOR operation is done after shifting the consecutive plain text entry to the right.
Additional context