当前位置:   article > 正文

[连载]Java程序设计(05)---任务驱动方式:简单的加密/解密系统_设计一个简单的加密系统,要求有加密和解密过程

设计一个简单的加密系统,要求有加密和解密过程

任务:还是上一家公司,现在该公司在全国各地都设立了自己的分公司以拓展其核心业务,那么就需要利用互联网在全国各地的公司之间传递信息(我们假定这些信息就是文字信息),这些信息可能涉及一些商业机密,为此公司需要一套简单的加密和解密系统来避免直接在互联网上传递明文信息。目前拟定了两种方案,一种是用使用凯撒密码,另一种是使用简单异或密码。设计并实现该系统。

我们还是先对凯撒密码和异或密码做一个简单的解释。

凯撒密码是一种最简单且最广为人知的加密技术。它是一种替换加密的技术,明文中的所有字母都在字母表上向后(或向前)按照一个固定数目进行偏移后被替换成密文。例如,当偏移量是3的时候,所有的字母A将被替换成D,B变成E,以此类推。这个加密方法是以恺撒的名字命名的,当年恺撒曾用此方法与其将军们进行联系。


简单异或密码是密码学中一种简单的加密算法,它按照如下原则进行运算:

\oplus 0 = A
\oplus A = 0
(A \oplus B) \oplus C = A \oplus (B \oplus C)
(B \oplus A) \oplus A = B \oplus 0 = B

其中\oplus逻辑异或(XOR)运算的符号。按这种逻辑,文本串行的每个字符可以通过与给定的密钥进行按位异或运算来加密。如果要解密,只需要将加密后的结果与密钥再次进行按位异或运算即可。

由于系统中存在两套加密和解密的方法,我们可以先为这两套方案设计一个公共的接口,这样在需要进行加密或解密时,只需要将接口类型实例化成具体的凯撒密码系统或简单异或密码系统就可以进行加密和解密了。也就是说,我们的密码系统有两种服务的方式,一种使用了凯撒密码另一种使用了简单异或密码,但是对调用者来说只需知道我们的系统中有加密和解密的方法,调用者并不关心具体的实现,这就是我们在上一章中提到的用服务的观点来审视多态。

在Java中可以使用interface关键字来定义接口,接口中的方法都是抽象方法,也就意味着实现了接口的类必须重写所有的抽象方法,否则该类仍然是抽象类。我们可以将接口视为一种约定,实现了接口的类必须实现接口中的方法;我们也可以将接口视为一种能力,实现了接口的类由于重写了接口中的方法就具备了接口所描述的能力;我们还可以将接口视为角色,一个类可以实现很多个接口,一个接口也可以被很多类实现,这就好比一个演员可以扮演多种角色,一个角色也可以由多个演员扮演。

该系统的代码如下:

  1. package com.lovo.endec;
  2. /**
  3. * 加解密系统的接口
  4. * @author 骆昊
  5. *
  6. */
  7. public interface CipherSystem {
  8. /**
  9. * 加密
  10. * @param plainText 明文
  11. * @return 密文
  12. */
  13. public String encode(String plainText);
  14. /**
  15. * 解密
  16. * @param cipherText 密文
  17. * @return 明文
  18. */
  19. public String decode(String cipherText);
  20. }

  1. package com.lovo.endec;
  2. /**
  3. * 凯撒密码系统
  4. * @author 骆昊
  5. *
  6. */
  7. public class CaesarCipher implements CipherSystem {
  8. private int shift; // 位移
  9. public CaesarCipher(int shift) {
  10. this.shift = shift;
  11. }
  12. @Override
  13. public String encode(String plainText) {
  14. plainText = plainText.toUpperCase();
  15. StringBuilder sb = new StringBuilder();
  16. for(int i = 0; i < plainText.length(); i++) {
  17. char currentChar = plainText.charAt(i);
  18. if(currentChar >= 'A' && currentChar <= 'Z') {
  19. sb.append((char)('A' + ((currentChar - 'A') + shift) % 26));
  20. }
  21. else {
  22. sb.append(currentChar);
  23. }
  24. }
  25. return sb.toString();
  26. }
  27. @Override
  28. public String decode(String cipherText) {
  29. cipherText = cipherText.toUpperCase();
  30. StringBuilder sb = new StringBuilder();
  31. for(int i = 0; i < cipherText.length(); i++) {
  32. char currentChar = cipherText.charAt(i);
  33. if(currentChar >= 'A' && currentChar <= 'Z') {
  34. sb.append((char)('A' + ((currentChar - 'A') - shift + 26) % 26));
  35. }
  36. else {
  37. sb.append(currentChar);
  38. }
  39. }
  40. return sb.toString();
  41. }
  42. }

  1. package com.lovo.endec;
  2. /**
  3. * 简单异或密码系统
  4. * @author 骆昊
  5. *
  6. */
  7. public class SimpleXORCipher implements CipherSystem {
  8. private int key; // 秘钥
  9. public SimpleXORCipher(int key) {
  10. this.key = key;
  11. }
  12. @Override
  13. public String encode(String plainText) {
  14. StringBuilder cipherText = new StringBuilder();
  15. for(int i = 0; i < plainText.length(); i++) {
  16. cipherText.append((char)(plainText.charAt(i) ^ key));
  17. }
  18. return cipherText.toString();
  19. }
  20. @Override
  21. public String decode(String cipherText) {
  22. return encode(cipherText);
  23. }
  24. }

  1. package com.lovo.endec;
  2. class CipherSystemTest {
  3. public static void showPlainText(CipherSystem sys, String text) {
  4. System.out.println(sys.decode(text));
  5. }
  6. public static void showCipherText(CipherSystem sys, String text) {
  7. System.out.println(sys.encode(text));
  8. }
  9. public static void main(String[] args) {
  10. String str1 = "I love you!";
  11. CipherSystem cs = new CaesarCipher(3); // 使用凯撒密码
  12. showCipherText(cs, str1);
  13. String str2 = "L ORYH BRX!";
  14. showPlainText(cs, str2);
  15. }
  16. }

  1. package com.lovo.endec;
  2. class CipherSystemTest {
  3. public static void showPlainText(CipherSystem sys, String text) {
  4. System.out.println(sys.decode(text));
  5. }
  6. public static void showCipherText(CipherSystem sys, String text) {
  7. System.out.println(sys.encode(text));
  8. }
  9. public static void main(String[] args) {
  10. String str1 = "I love you!";
  11. CipherSystem cs = new SimpleXORCipher(3); // 使用简单异或密码
  12. showCipherText(cs, str1);
  13. String str2 = "J#oluf#zlv\"";
  14. showPlainText(cs, str2);
  15. }
  16. }


大家可能已经注意到了,接口比抽象类更加抽象,接口本身也是不能实例化的,但是接口的使用却比抽象类更加灵活。在Java领域的经典著作《Effective Java》上讲到一条规则就是:接口优于抽象类。同时,该书还提到常量接口(定义一个接口来放置常量)是对接口不正确的使用方式。Java中的接口大致可以分为:单方法接口(接口中只有一个回调方法,例如:Runnable接口、ActionListener接口等)、标识接口(接口中没有任何方法,但是实现该接口却具备了某种能力,例如:Serializable接口、Cloneable接口等)、普通接口和常量接口。对接口的使用是Java程序设计中很有特点也是很有魅力的地方。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/900963
推荐阅读
相关标签
  

闽ICP备14008679号