Skip to content

Instantly share code, notes, and snippets.

@devyte
devyte / CertStoreFile.h
Last active June 6, 2018 18:06
Templated Certificate Store
#ifndef __CERTSTOREFILE_H__
#define __CERTSTOREFILE_H__
namespace CertStore
{
template <typename FSType>
class CertStoreFile
{
public:
CertStoreFile(FSType &fs, const char *name)