![]() |
Quadcap Embeddable Database |
00001 package com.quadcap.crypto; 00002 00003 /* Copyright 2002 - 2003 Quadcap Software. All rights reserved. 00004 * 00005 * This software is distributed under the Quadcap Free Software License. 00006 * This software may be used or modified for any purpose, personal or 00007 * commercial. Open Source redistributions are permitted. Commercial 00008 * redistribution of larger works derived from, or works which bundle 00009 * this software requires a "Commercial Redistribution License"; see 00010 * http://www.quadcap.com/purchase. 00011 * 00012 * Redistributions qualify as "Open Source" under one of the following terms: 00013 * 00014 * Redistributions are made at no charge beyond the reasonable cost of 00015 * materials and delivery. 00016 * 00017 * Redistributions are accompanied by a copy of the Source Code or by an 00018 * irrevocable offer to provide a copy of the Source Code for up to three 00019 * years at the cost of materials and delivery. Such redistributions 00020 * must allow further use, modification, and redistribution of the Source 00021 * Code under substantially the same terms as this license. 00022 * 00023 * Redistributions of source code must retain the copyright notices as they 00024 * appear in each source code file, these license terms, and the 00025 * disclaimer/limitation of liability set forth as paragraph 6 below. 00026 * 00027 * Redistributions in binary form must reproduce this Copyright Notice, 00028 * these license terms, and the disclaimer/limitation of liability set 00029 * forth as paragraph 6 below, in the documentation and/or other materials 00030 * provided with the distribution. 00031 * 00032 * The Software is provided on an "AS IS" basis. No warranty is 00033 * provided that the Software is free of defects, or fit for a 00034 * particular purpose. 00035 * 00036 * Limitation of Liability. Quadcap Software shall not be liable 00037 * for any damages suffered by the Licensee or any third party resulting 00038 * from use of the Software. 00039 */ 00040 00041 import java.util.Random; 00042 00043 import java.nio.ByteBuffer; 00044 00045 /** 00046 * Base class for symmetric ciphers 00047 * 00048 * @author Stan Bailes 00049 */ 00050 public abstract class AbstractSymmetricKey implements SymmetricKey { 00051 /** 00052 * Initialize key from serialized representation 00053 */ 00054 public abstract void init(String s) throws Exception; 00055 00056 /** 00057 * Initialize: Create a random key 00058 */ 00059 public abstract void init(Random r); 00060 00061 /** 00062 * The key's block size 00063 */ 00064 public abstract int getBlockSize(); 00065 00066 /** 00067 * Class wrapper for encryption as a key operation 00068 */ 00069 class EncryptionKey implements Key { 00070 public void f(ByteBuffer m, ByteBuffer c) { 00071 encrypt(m, c); 00072 } 00073 public int blockSize() { return getBlockSize(); } 00074 } 00075 protected EncryptionKey ekey = new EncryptionKey(); 00076 00077 /** 00078 * Return the key used for decryption 00079 */ 00080 public Key getEncryptionKey() { return ekey; } 00081 00082 /** 00083 * Encrypt a buffer (must be multiple of 8 bytes) 00084 */ 00085 public abstract void encrypt(ByteBuffer plain, ByteBuffer code); 00086 00087 /** 00088 * Class wrapper for decryption as a key operation 00089 */ 00090 class DecryptionKey implements Key { 00091 AbstractSymmetricKey k = null; 00092 public DecryptionKey(AbstractSymmetricKey k) { 00093 this.k = k; 00094 } 00095 public int blockSize() { return getBlockSize(); } 00096 public void f(ByteBuffer m, ByteBuffer c) { 00097 if (k == null) { 00098 decrypt(m, c); 00099 } else { 00100 k.decrypt(m, c); 00101 } 00102 } 00103 } 00104 protected DecryptionKey dkey = new DecryptionKey(this); 00105 00106 /** 00107 * Return the key used for encryption 00108 */ 00109 public Key getDecryptionKey() { return dkey; } 00110 00111 /** 00112 * Decrypt a buffer (must be a multiple of 8 bytes) 00113 */ 00114 public abstract void decrypt(ByteBuffer code, ByteBuffer plain); 00115 00116 }