identity_storage 1.5.1

Abstractions over storage for cryptographic keys used in DID Documents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2020-2023 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use crate::key_id_storage::memstore::KeyIdMemstore;

use crate::key_id_storage::tests::utils::test_storage_operations;

#[tokio::test]
async fn test_memstore() {
  let memstore: KeyIdMemstore = KeyIdMemstore::new();
  test_storage_operations(memstore).await;
}