Skip to content

Instantly share code, notes, and snippets.

@SteveSyfuhs
Created August 22, 2017 01:28
Show Gist options
  • Save SteveSyfuhs/2d15df698da1800c12e90944b7c03d72 to your computer and use it in GitHub Desktop.
Save SteveSyfuhs/2d15df698da1800c12e90944b7c03d72 to your computer and use it in GitHub Desktop.
Storage Interface
public interface IKeyStorageService
{
Task<IKeyIdentifier> AddKey(IEnclaveKey key);
Task<IEnclaveKey> GetKey(IKeyIdentifier id);
Task<IQueryable<IKeyIdentifier>> ListKeys();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment