(self, request: RawQuoteArgs)
| 543 | } |
| 544 | |
| 545 | async fn raw_quote(self, request: RawQuoteArgs) -> Result<TdxQuoteResponse> { |
| 546 | self.tdx_quote(TdxQuoteArgs { |
| 547 | report_data: request.report_data, |
| 548 | hash_algorithm: "raw".to_string(), |
| 549 | prefix: "".to_string(), |
| 550 | }) |
| 551 | .await |
| 552 | } |
| 553 | |
| 554 | async fn info(self) -> Result<AppInfo> { |
| 555 | get_info(&self.state, false).await |