import * as types from './actionsTypes';
export function encryptionInit() {
return {
type: types.ENCRYPTION.INIT
};
}
export function encryptionStop() {
type: types.ENCRYPTION.STOP
export function encryptionSet(enabled = false, banner = null) {
type: types.ENCRYPTION.SET,
enabled,
banner
export function encryptionSetBanner(banner) {
type: types.ENCRYPTION.SET_BANNER,
export function encryptionDecodeKey(password) {
type: types.ENCRYPTION.DECODE_KEY,
password