summaryrefslogtreecommitdiff
path: root/src/main/kotlin/Authenticator.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/Authenticator.kt')
-rw-r--r--src/main/kotlin/Authenticator.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/Authenticator.kt b/src/main/kotlin/Authenticator.kt
index 47747f3..932004f 100644
--- a/src/main/kotlin/Authenticator.kt
+++ b/src/main/kotlin/Authenticator.kt
@@ -14,5 +14,5 @@ interface Authenticator {
* @throws except.FailedAuthenticationException if the authentication could not be performed. A human-readable
* reason for the failure can be provided if necessary.
*/
- fun authenticate(username: String, password: String, readFun: () -> Array<UByte>, writeFun: (b: Array<UByte>) -> Unit)
+ fun authenticate(username: String, password: String, readFun: () -> List<UByte>, writeFun: (b: List<UByte>) -> Unit)
} \ No newline at end of file