AuthSecret: make method oneway
There is not result from the method and the called does not need to wait
for it to complete.
Test: AuthSecretHidlTest
Bug: 71527305
Change-Id: Ib1ba3a2993ac31fb9706c90e87d8f731c2c5d025
diff --git a/authsecret/1.0/IAuthSecret.hal b/authsecret/1.0/IAuthSecret.hal
index 6b573b3..9a0fd5f 100644
--- a/authsecret/1.0/IAuthSecret.hal
+++ b/authsecret/1.0/IAuthSecret.hal
@@ -42,5 +42,5 @@
*
* @param secret blob derived from the primary user's credential.
*/
- primaryUserCredential(vec<uint8_t> secret);
+ oneway primaryUserCredential(vec<uint8_t> secret);
};