/net/minecraft/SecuritySettings.java

https://github.com/ddark008/eLauncher · Java · 122 lines · 84 code · 17 blank · 21 comment · 0 complexity · 6dd825b6db9a9b7e8bc2f69fbcfa8591 MD5 · raw file

  1. package net.minecraft;
  2. //Файл SecuritySettings.java
  3. import java.io.IOException;
  4. import java.io.UnsupportedEncodingException;
  5. import java.security.InvalidKeyException;
  6. import java.security.NoSuchAlgorithmException;
  7. import java.util.logging.Level;
  8. import java.util.logging.Logger;
  9. import javax.crypto.BadPaddingException;
  10. import javax.crypto.Cipher;
  11. import javax.crypto.IllegalBlockSizeException;
  12. import javax.crypto.NoSuchPaddingException;
  13. import javax.crypto.SecretKey;
  14. import sun.misc.BASE64Decoder;
  15. import sun.misc.BASE64Encoder;
  16. /**
  17. *
  18. * @author Cloud
  19. */
  20. public final class SecuritySettings {
  21. private final static class MySecretKey implements SecretKey {
  22. private static final long serialVersionUID = -5249792370958427064L;
  23. private byte[] key = new byte[] { 7, 0, 8, 3, 7, 7, 5, 3}; // ключ
  24. // не должен иметь длину более 8 байт, для безопасного шифрования его
  25. // необходимо изменить
  26. public String getAlgorithm() {
  27. return "DES";
  28. }
  29. public String getFormat() {
  30. return "RAW";
  31. }
  32. public byte[] getEncoded() {
  33. return key;
  34. }
  35. }
  36. private static SecretKey key;
  37. private static Cipher ecipher;
  38. private static Cipher dcipher;
  39. static {
  40. try {
  41. key = new MySecretKey();
  42. ecipher = Cipher.getInstance("DES");
  43. dcipher = Cipher.getInstance("DES");
  44. ecipher.init(Cipher.ENCRYPT_MODE, key);
  45. dcipher.init(Cipher.DECRYPT_MODE, key);
  46. } catch (InvalidKeyException ex) {
  47. Logger.getLogger(SecuritySettings.class.getName()).log(
  48. Level.SEVERE, null, ex);
  49. } catch (NoSuchAlgorithmException ex) {
  50. Logger.getLogger(SecuritySettings.class.getName()).log(
  51. Level.SEVERE, null, ex);
  52. } catch (NoSuchPaddingException ex) {
  53. Logger.getLogger(SecuritySettings.class.getName()).log(
  54. Level.SEVERE, null, ex);
  55. }
  56. }
  57. /**
  58. * Функция шифровнаия
  59. *
  60. * @param str
  61. * строка открытого текста
  62. * @return зашифрованная строка в формате Base64
  63. */
  64. public static String encrypt(String str) {
  65. try {
  66. byte[] utf8 = str.getBytes("UTF8");
  67. byte[] enc = ecipher.doFinal(utf8);
  68. return new BASE64Encoder().encode(enc);
  69. } catch (IllegalBlockSizeException ex) {
  70. Logger.getLogger(SecuritySettings.class.getName()).log(
  71. Level.SEVERE, null, ex);
  72. } catch (BadPaddingException ex) {
  73. Logger.getLogger(SecuritySettings.class.getName()).log(
  74. Level.SEVERE, null, ex);
  75. } catch (UnsupportedEncodingException ex) {
  76. Logger.getLogger(SecuritySettings.class.getName()).log(
  77. Level.SEVERE, null, ex);
  78. }
  79. return null;
  80. }
  81. /**
  82. * Функция расшифрования
  83. *
  84. * @param str
  85. * зашифрованная строка в формате Base64
  86. * @return расшифрованная строка
  87. */
  88. public static String decrypt(String str) {
  89. try {
  90. byte[] dec = new BASE64Decoder().decodeBuffer(str);
  91. byte[] utf8 = dcipher.doFinal(dec);
  92. return new String(utf8, "UTF8");
  93. } catch (IllegalBlockSizeException ex) {
  94. Logger.getLogger(SecuritySettings.class.getName()).log(
  95. Level.SEVERE, null, ex);
  96. } catch (BadPaddingException ex) {
  97. Logger.getLogger(SecuritySettings.class.getName()).log(
  98. Level.SEVERE, null, ex);
  99. } catch (IOException ex) {
  100. Logger.getLogger(SecuritySettings.class.getName()).log(
  101. Level.SEVERE, null, ex);
  102. }
  103. return null;
  104. }
  105. }