rot_13.py 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #!/usr/bin/env python
  2. """ Python Character Mapping Codec for ROT13.
  3. See http://ucsub.colorado.edu/~kominek/rot13/ for details.
  4. Written by Marc-Andre Lemburg ([email protected]).
  5. """#"
  6. import codecs
  7. ### Codec APIs
  8. class Codec(codecs.Codec):
  9. def encode(self,input,errors='strict'):
  10. return codecs.charmap_encode(input,errors,encoding_map)
  11. def decode(self,input,errors='strict'):
  12. return codecs.charmap_decode(input,errors,decoding_map)
  13. class StreamWriter(Codec,codecs.StreamWriter):
  14. pass
  15. class StreamReader(Codec,codecs.StreamReader):
  16. pass
  17. ### encodings module API
  18. def getregentry():
  19. return (Codec().encode,Codec().decode,StreamReader,StreamWriter)
  20. ### Decoding Map
  21. decoding_map = codecs.make_identity_dict(range(256))
  22. decoding_map.update({
  23. 0x0041: 0x004e,
  24. 0x0042: 0x004f,
  25. 0x0043: 0x0050,
  26. 0x0044: 0x0051,
  27. 0x0045: 0x0052,
  28. 0x0046: 0x0053,
  29. 0x0047: 0x0054,
  30. 0x0048: 0x0055,
  31. 0x0049: 0x0056,
  32. 0x004a: 0x0057,
  33. 0x004b: 0x0058,
  34. 0x004c: 0x0059,
  35. 0x004d: 0x005a,
  36. 0x004e: 0x0041,
  37. 0x004f: 0x0042,
  38. 0x0050: 0x0043,
  39. 0x0051: 0x0044,
  40. 0x0052: 0x0045,
  41. 0x0053: 0x0046,
  42. 0x0054: 0x0047,
  43. 0x0055: 0x0048,
  44. 0x0056: 0x0049,
  45. 0x0057: 0x004a,
  46. 0x0058: 0x004b,
  47. 0x0059: 0x004c,
  48. 0x005a: 0x004d,
  49. 0x0061: 0x006e,
  50. 0x0062: 0x006f,
  51. 0x0063: 0x0070,
  52. 0x0064: 0x0071,
  53. 0x0065: 0x0072,
  54. 0x0066: 0x0073,
  55. 0x0067: 0x0074,
  56. 0x0068: 0x0075,
  57. 0x0069: 0x0076,
  58. 0x006a: 0x0077,
  59. 0x006b: 0x0078,
  60. 0x006c: 0x0079,
  61. 0x006d: 0x007a,
  62. 0x006e: 0x0061,
  63. 0x006f: 0x0062,
  64. 0x0070: 0x0063,
  65. 0x0071: 0x0064,
  66. 0x0072: 0x0065,
  67. 0x0073: 0x0066,
  68. 0x0074: 0x0067,
  69. 0x0075: 0x0068,
  70. 0x0076: 0x0069,
  71. 0x0077: 0x006a,
  72. 0x0078: 0x006b,
  73. 0x0079: 0x006c,
  74. 0x007a: 0x006d,
  75. })
  76. ### Encoding Map
  77. encoding_map = codecs.make_encoding_map(decoding_map)
  78. ### Filter API
  79. def rot13(infile, outfile):
  80. outfile.write(infile.read().encode('rot-13'))
  81. if __name__ == '__main__':
  82. import sys
  83. rot13(sys.stdin, sys.stdout)