From caa34e37ab297a795c283ea5c52ef2bb85370a54 Mon Sep 17 00:00:00 2001
From: Dariusz Rybicki <dariusz@elixxir.io>
Date: Thu, 2 Jun 2022 12:05:51 +0200
Subject: [PATCH] Add numBytes parameter to PasswordGenerator

---
 Sources/ElixxirDAppsSDK/PasswordGenerator.swift | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/Sources/ElixxirDAppsSDK/PasswordGenerator.swift b/Sources/ElixxirDAppsSDK/PasswordGenerator.swift
index 949dfdb2..f1dd47ea 100644
--- a/Sources/ElixxirDAppsSDK/PasswordGenerator.swift
+++ b/Sources/ElixxirDAppsSDK/PasswordGenerator.swift
@@ -1,16 +1,16 @@
 import Bindings
 
 public struct PasswordGenerator {
-  public var run: () -> Data
+  public var run: (Int) -> Data
 
-  public func callAsFunction() -> Data {
-    run()
+  public func callAsFunction(numBytes: Int = 32) -> Data {
+    run(numBytes)
   }
 }
 
 extension PasswordGenerator {
-  public static let live = PasswordGenerator {
-    guard let secret = BindingsGenerateSecret(32) else {
+  public static let live = PasswordGenerator { numBytes in
+    guard let secret = BindingsGenerateSecret(numBytes) else {
       fatalError("BindingsGenerateSecret returned `nil`")
     }
     return secret
@@ -19,7 +19,7 @@ extension PasswordGenerator {
 
 #if DEBUG
 extension PasswordGenerator {
-  public static let failing = PasswordGenerator {
+  public static let failing = PasswordGenerator { _ in
     Data()
   }
 }
-- 
GitLab