1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
//! Set of interfaces that allow access to DID Document secrets
pub mod resolvers;
use async_trait::async_trait;
use serde_json::Value;
use crate::error::Result;
/// Interface for secrets resolver.
/// Resolves secrets such as private keys to be used for signing and encryption.
#[async_trait]
pub trait SecretsResolver {
/// Finds secret (usually private key) identified by the given key ID.
///
/// # Parameters
/// - `secret_id` the ID (in form of DID URL) identifying a secret
///
/// # Returns
/// A secret (usually private key) or None of there is no secret for the given ID
///
/// # Errors
/// - IOError
/// - InvalidState
async fn get_secret(&self, secret_id: &str) -> Result<Option<Secret>>;
/// Find all secrets that have one of the given IDs.
/// Return secrets only for key IDs for which a secret is present.
///
/// # Parameters
/// - `secret_ids` the IDs find secrets for
///
/// # Returns
/// possible empty list of all secrets that have one of the given IDs.
async fn find_secrets<'a>(&self, secret_ids: &'a [&'a str]) -> Result<Vec<&'a str>>;
}
/// Represents secret.
#[derive(Clone, Debug)]
pub struct Secret {
/// A key ID identifying a secret (private key).
pub id: String,
/// Must have the same semantics as type ('type' field) of the corresponding method in DID Doc containing a public key.
pub type_: SecretType,
/// Value of the secret (private key)
pub secret_material: SecretMaterial,
}
/// Must have the same semantics as type ('type' field) of the corresponding method in DID Doc containing a public key.
#[derive(Clone, Debug)]
pub enum SecretType {
JsonWebKey2020,
X25519KeyAgreementKey2019,
Ed25519VerificationKey2018,
EcdsaSecp256k1VerificationKey2019,
Other(String),
}
/// Represents secret crypto material.
#[derive(Clone, Debug)]
pub enum SecretMaterial {
JWK(Value),
Multibase(String),
Base58(String),
Hex(String),
Other(Value),
}