747576777879808182
public byte[] get(String key) throws InvalidKeyException { byte[] value = bdb.get(key.getBytes()); if(value == null) throw new InvalidKeyException(); return value; }