Package org.h2.security
Class SecureFileStore
- java.lang.Object
-
- org.h2.store.FileStore
-
- org.h2.security.SecureFileStore
-
public class SecureFileStore extends FileStore
A file store that encrypts all data before writing, and decrypts all data after reading. Areas that were never written to (for example after calling setLength to enlarge the file) are not encrypted (contains 0 bytes).
-
-
Field Summary
Fields Modifier and Type Field Description private byte[]bufferprivate byte[]bufferForInitVectorprivate BlockCiphercipherprivate BlockCiphercipherForInitVectorprivate byte[]keyprivate intkeyIterationsprivate longpos-
Fields inherited from class org.h2.store.FileStore
HEADER_LENGTH, name
-
-
Constructor Summary
Constructors Constructor Description SecureFileStore(DataHandler handler, java.lang.String name, java.lang.String mode, java.lang.String cipher, byte[] key, int keyIterations)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected byte[]generateSalt()Generate the random salt bytes if required.protected voidinitKey(byte[] salt)Initialize the key using the given salt.voidreadFully(byte[] b, int off, int len)Read a number of bytes.voidreadFullyDirect(byte[] b, int off, int len)Read a number of bytes without decrypting.voidseek(long x)Go to the specified file location.voidwrite(byte[] b, int off, int len)Write a number of bytes.protected voidwriteDirect(byte[] b, int off, int len)Write a number of bytes without encrypting.private voidxorInitVector(byte[] b, int off, int len, long p)-
Methods inherited from class org.h2.store.FileStore
autoDelete, close, closeAndDeleteSilently, closeFile, closeSilently, getFilePointer, init, length, open, open, open, openFile, releaseLock, setCheckedWriting, setLength, stopAutoDelete, sync, tryLock
-
-
-
-
Field Detail
-
key
private byte[] key
-
cipher
private final BlockCipher cipher
-
cipherForInitVector
private final BlockCipher cipherForInitVector
-
buffer
private byte[] buffer
-
pos
private long pos
-
bufferForInitVector
private final byte[] bufferForInitVector
-
keyIterations
private final int keyIterations
-
-
Constructor Detail
-
SecureFileStore
public SecureFileStore(DataHandler handler, java.lang.String name, java.lang.String mode, java.lang.String cipher, byte[] key, int keyIterations)
-
-
Method Detail
-
generateSalt
protected byte[] generateSalt()
Description copied from class:FileStoreGenerate the random salt bytes if required.- Overrides:
generateSaltin classFileStore- Returns:
- the random salt or the magic
-
initKey
protected void initKey(byte[] salt)
Description copied from class:FileStoreInitialize the key using the given salt.
-
writeDirect
protected void writeDirect(byte[] b, int off, int len)Description copied from class:FileStoreWrite a number of bytes without encrypting.- Overrides:
writeDirectin classFileStore- Parameters:
b- the source bufferoff- the offsetlen- the number of bytes to write
-
write
public void write(byte[] b, int off, int len)Description copied from class:FileStoreWrite a number of bytes.
-
readFullyDirect
public void readFullyDirect(byte[] b, int off, int len)Description copied from class:FileStoreRead a number of bytes without decrypting.- Overrides:
readFullyDirectin classFileStore- Parameters:
b- the target bufferoff- the offsetlen- the number of bytes to read
-
readFully
public void readFully(byte[] b, int off, int len)Description copied from class:FileStoreRead a number of bytes.
-
seek
public void seek(long x)
Description copied from class:FileStoreGo to the specified file location.
-
xorInitVector
private void xorInitVector(byte[] b, int off, int len, long p)
-
-