/src/main/java/com/esotericsoftware/kryo/compress/BlowfishCompressor.java

https://github.com/wordrak/kryo · Java · 61 lines · 48 code · 9 blank · 4 comment · 4 complexity · 92856442fb09087a3076e94fa636ecc4 MD5 · raw file

  1. package com.esotericsoftware.kryo.compress;
  2. import java.nio.ByteBuffer;
  3. import java.security.GeneralSecurityException;
  4. import javax.crypto.Cipher;
  5. import javax.crypto.spec.SecretKeySpec;
  6. import com.esotericsoftware.kryo.Compressor;
  7. import com.esotericsoftware.kryo.Context;
  8. import com.esotericsoftware.kryo.Kryo;
  9. import com.esotericsoftware.kryo.SerializationException;
  10. import com.esotericsoftware.kryo.Serializer;
  11. /**
  12. * Encrypts data using the blowfish cipher.
  13. * @author Nathan Sweet <misc@n4te.com>
  14. */
  15. public class BlowfishCompressor extends Compressor {
  16. private SecretKeySpec keySpec;
  17. public BlowfishCompressor (Serializer serializer, byte[] key) {
  18. this(serializer, key, 2048);
  19. }
  20. public BlowfishCompressor (Serializer serializer, byte[] key, int bufferSize) {
  21. super(serializer, bufferSize);
  22. keySpec = new SecretKeySpec(key, "Blowfish");
  23. }
  24. public void compress (ByteBuffer inputBuffer, Object object, ByteBuffer outputBuffer) {
  25. Context context = Kryo.getContext();
  26. Cipher encrypt = (Cipher)context.get(this, "encryptCipher");
  27. try {
  28. if (encrypt == null) {
  29. encrypt = Cipher.getInstance("Blowfish");
  30. encrypt.init(Cipher.ENCRYPT_MODE, keySpec);
  31. context.put(this, "encryptCipher", encrypt);
  32. }
  33. encrypt.doFinal(inputBuffer, outputBuffer);
  34. } catch (GeneralSecurityException ex) {
  35. throw new SerializationException(ex);
  36. }
  37. }
  38. public void decompress (ByteBuffer inputBuffer, Class type, ByteBuffer outputBuffer) {
  39. Context context = Kryo.getContext();
  40. Cipher decrypt = (Cipher)context.get(this, "decryptCipher");
  41. try {
  42. if (decrypt == null) {
  43. decrypt = Cipher.getInstance("Blowfish");
  44. decrypt.init(Cipher.DECRYPT_MODE, keySpec);
  45. context.put(this, "decryptCipher", decrypt);
  46. }
  47. decrypt.doFinal(inputBuffer, outputBuffer);
  48. } catch (GeneralSecurityException ex) {
  49. throw new SerializationException(ex);
  50. }
  51. }
  52. }