ROT13 ("rotate 13 places") is a simple cypher in which each letter is replaced with the letter that comes 13 places after it in the alphabet.
1
vote
3answers
62 views
String Manipulation and rot-13
I have to basically take the input array of characters and translate it into the result array using rot-13. So, here's what I'm thinking of doing: use a for loop and then use conditionals inside the ...
0
votes
3answers
26 views
Having trouble with my code involving rot-13 [closed]
I have to write a program that will essentially return a character that is 13 places forward or backward. It only works for characters in the alphabet and if it's lowercase, it stays lowercase and if ...
0
votes
2answers
54 views
Low memory warning after Rot13 implementation [closed]
Recently i have added a rot13 function to my project so i can rot13 a string i want.The sample code was found over the internet. Right after i roted a string i am getting a low memory warning and 100% ...
-2
votes
1answer
53 views
rot13 Program gives incorrect result for a-z last 5 alphabets but works for the capital A-Z [closed]
I am trying to write a ROT13 program in C. The program works fine for the capital letters but doesn't work for the last few characters of small a-z.
#include <stdio.h>
#include ...
1
vote
1answer
49 views
Errors in ROT13 code (C)
My program should take in a char, and encode it using ROT13 if it is a letter, and otherwise leave it the same, and then print the result.
My code below works for all lowercase letters, and uppercase ...
1
vote
4answers
43 views
How to re-work this ROT13 Function
I know that there are countless ways to ROT13 and that Python even has a in-built function, but I really want to understand how to modify the code that I've written. It works fine when I test it in my ...
0
votes
0answers
45 views
Adding letters at the end of the alphabet ceasar cipher
i have a question. (Obviously)
So if i want to change the postition to æøå in the ascii table (which is 145, 155 and 134) to follow Z (172).
z = 172
æ = 173
ø = 174
å = 175
and the ceasar cipher ...
0
votes
1answer
78 views
How to ignore special characters when incrementing and how to use % to loop through ASCII?
#include <stdio.h>
int main()
{
char msg[31] = {'\0'};
char encrypted[31] = {'\0'};
int key;
printf("Please enter a message under 30 characters: ");
fgets(msg, 31, ...
0
votes
0answers
22 views
How to make the incrementing ignore special characters and spaces? And how to use modulus?
#include <stdio.h>
int main()
#include <stdio.h>
int main()
{
char msg[31] = {'\0'};
char encrypted[31] = {'\0'};
int key;
printf("Please enter a message under 30 ...
-1
votes
4answers
271 views
Python text encryption: rot13
I am currently doing an assignment that encrypts text by using rot 13, but some of my text wont register.
# cgi is to escape html
# import cgi
def rot13(s):
#string encrypted
scrypt=''
...
-1
votes
2answers
116 views
How to add more characters and letters to rot13 and Caesar encryption
I want to add the letters "ç," "ğ," "ı," "ö" and "ü" into this encrypter's alphabet, and maybe special chars, too. How can I do that?
for (int i = 0; i < metin.length(); i++) {
char ...
1
vote
2answers
162 views
crash while performing a Rot13 in C
I feel as though this should be pretty fundamental but for some reason I'm stuck.
Here is what I have:
char *rot13(char *s)
{
char *p=s;
int upper;
while (*p) {
...
0
votes
2answers
747 views
how rot13 (encode and decode) on a php code string
i have a big php code that i want to encode and decode it manually.
my problem is that php code has many single quotes and double quotes inside and because of them i have errors while using ...
2
votes
1answer
696 views
How to ROT13 encode in Python3?
The Python 3 documentation has rot13 listed on its codecs page.
I tried encoding a string using rot13 encoding:
import codecs
s = "hello"
os = codecs.encode( s, "rot13" )
print(os)
This gives a ...
0
votes
2answers
128 views
C++ ROT13 Function Crashes
I'm not too good with C++, however; my code compiled, but the function crashes my program, the below is a short sum-up of the code; it's not complete, however the function and call is there.
void ...
1
vote
4answers
591 views
Implement ROT13 with PHP
I found a string after reading funny things about Jon Skeet, and I guessed that it was in ROT13. Before just checking my guess, I thought I'd try and decrypt it with PHP. Here's what I had:
$string = ...
4
votes
1answer
2k views
ROT-13 function in java?
Is there already a rot13() and unrot13() implementation as part of one of the standard Java libraries?
Or do I have to write ones myself (i.e. as in "reinvent the wheel")?
As in:
int rot13 ( int c ...
0
votes
2answers
229 views
ROT-13 Link Decoding Failing in Internet Explorer
I'm encoding all email addresses on a website as ROT-13, then decoding the addresses using Javascript (to avoid spam). However, the decoding just flat-out doesn't work in IE 7 or 8. Works splendidly ...
3
votes
3answers
377 views
Regex matching and encoding duplicate characters in a string
My problem is that I've got URL access keys that look like "Bd333333d". I need the string length to be no longer than the original, but may be shorter. I want to convert/obfuscate the duplicate ...
2
votes
3answers
150 views
Involutary cipher (like ROT13) for an alphabet with an odd number of symbols
ROT13 has the nice property of being an involution for an A-Z alphabet (26 letters), that is to say:
ROT13(ROT13(string-A-to-Z)) = string-A-to-Z ;
What is a simple cipher function for an alphabet ...
4
votes
1answer
274 views
What are some practical applications of the ROT13 algorithm?
What are some practical applications of the ROT13 algorithm? Since it can't be used for encryption, the only usages I've seen of it involve scrambling spoilers or answers to questions. Are there other ...
6
votes
4answers
396 views
Why 13 places in ROT13?
I understand the reasons for and against ROT13, but I'm wondering why specifically people have chosen 13 places to shift the alphabet? I understand it's halfway around, but is there an elegant reason ...
0
votes
4answers
5k views
How can one manipulate the Start menu's “Recently Used Programs” list programmatically? [closed]
I'm looking for a way to make programs appear (frequently) used, so that they would appear in the Start menu's "Recently Used Programs" (after a zero touch install).
I'm trying to figure out how ...
2
votes
7answers
4k views
Where is my one-line implementation of rot13 in JavaScript going wrong?
Code in question with syntax highlighting here: via Friendpaste
rot13.js:
<script>
String.prototype.rot13 = rot13 = function(s)
{
return (s = (s) ? s : this).split('').map(function(_)
...


