Derives a key from the Tappd service using the path as both path and subject
(&self, path: &str)
| 110 | |
| 111 | /// Derives a key from the Tappd service using the path as both path and subject |
| 112 | pub async fn derive_key(&self, path: &str) -> Result<DeriveKeyResponse> { |
| 113 | self.derive_key_with_subject_and_alt_names(path, Some(path), None) |
| 114 | .await |
| 115 | } |
| 116 | |
| 117 | /// Derives a key from the Tappd service with a specific subject |
| 118 | pub async fn derive_key_with_subject( |