The verification method id used in a proof (` #key-1`).
(did: &str)
| 47 | |
| 48 | /// The verification method id used in a proof (`<did>#key-1`). |
| 49 | pub fn verification_method(did: &str) -> String { |
| 50 | format!("{did}#key-1") |
| 51 | } |
| 52 | |
| 53 | /// The DID out of a `<did>#fragment` verification method string. |
| 54 | pub fn did_from_verification_method(vm: &str) -> &str { |
no outgoing calls