pub async fn author_key_is_valid(
    _author: &AgentPubKey
) -> SysValidationResult<()>
Expand description

Verify the author key was valid at the time of signing with dpki TODO: This is just a stub until we have dpki.

Examples found in repository?
src/core/workflow/sys_validation_workflow.rs (line 554)
552
553
554
555
556
pub async fn counterfeit_check(signature: &Signature, action: &Action) -> SysValidationResult<()> {
    verify_action_signature(signature, action).await?;
    author_key_is_valid(action.author()).await?;
    Ok(())
}