yekmer / hawk

Secure Simple Key-Value Storage for Android

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Android Arsenal API Join the chat at https://gitter.im/orhanobut/hawk

#Hawk Secure, simple key-value storage for android

Hawk uses:

  • AES for the crypto
  • SharedPreferences for the storage
  • Gson

Hawk provides:

  • Secure data persistence
  • Save any type
  • Save list of any type

###Add dependency

repositories {
    maven { url "https://oss.sonatype.org/content/repositories/snapshots/"}
}
dependencies {
    compile 'com.orhanobut:hawk:1.3-SNAPSHOT'
}

Initialize the hawk

Hawk.init(context);

Save

Hawk.put(key, ANYTHING);

Get

ANYTYPE result = Hawk.get(key);

or with default value

ANYTYPE result = Hawk.get(key, T);

Remove

Hawk.remove(key);

Contains

boolean contains = Hawk.contains(key); 

Set the log output (optional)

Hawk.init(context, LogLevel.FULL); // as default it is NONE
More samples for save
Hawk.put("key", "something"); // Save string
Hawk.put("key", true); // save boolean
Hawk.put("key", new Foo()); // save an object
Hawk.put("key", List<String>); // save list
Hawk.put("key", List<Foo>); // save list of any type
Hawk.put("key", 1234); // save numbers
More samples for get
String value = Hawk.get(key);
int value = Hawk.get(key);
Foo value = Hawk.get(key);
boolean value = Hawk.get(key);
List<String> value = Hawk.get(key);
List<Foo> value = Hawk.get(key);

or with the defaults

String value = Hawk.get(key, "");
int value = Hawk.get(key, 0);
Foo value = Hawk.get(key, new Foo());
boolean value = Hawk.get(key, false);
List<String> value = Hawk.get(key, Collections.emptyList());
List<Foo> value = Hawk.get(key, new ArrayList<Foo>);

###License

Copyright 2015 Orhan Obut

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

Secure Simple Key-Value Storage for Android

License:Apache License 2.0


Languages

Language:Java 100.0%