#ifndef __SFSFILEOPERATIONS_H_INCLUDED__
#define __SFSFILEOPERATIONS_H_INCLUDED__

#include <stdint.h>

int32_t saveKeyToSFS(const char* path, const uint8_t* keyBlob, uint32_t length, const uint8_t* trailer, uint32_t trailerLen);
int32_t readKeyFromSFS(const char* path, uint8_t* keyBlob, uint32_t length, uint32_t pos);
int32_t getKeySize(const char* path, uint32_t* size);
void qsee_oem_set_kdf_derive_key(void **key, int32_t *key_len);
int32_t removeFile(const char* path);

#endif /* __SFSFILEOPERATIONS_H_INCLUDED__ */

