File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
kotlin/app/src/main/java/com/bitwarden/myapplication Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -255,6 +255,7 @@ class MainActivity : FragmentActivity() {
255
255
email = EMAIL ,
256
256
privateKey = loginBody.PrivateKey ,
257
257
signingKey = null ,
258
+ securityState = null ,
258
259
method = InitUserCryptoMethod .Password (
259
260
password = PASSWORD , userKey = loginBody.Key
260
261
)
@@ -341,6 +342,7 @@ class MainActivity : FragmentActivity() {
341
342
email = EMAIL ,
342
343
privateKey = privateKey!! ,
343
344
signingKey = null ,
345
+ securityState = null ,
344
346
method = InitUserCryptoMethod .DecryptedKey (decryptedUserKey = key)
345
347
)
346
348
)
@@ -380,6 +382,7 @@ class MainActivity : FragmentActivity() {
380
382
email = EMAIL ,
381
383
privateKey = privateKey!! ,
382
384
signingKey = null ,
385
+ securityState = null ,
383
386
method = InitUserCryptoMethod .Pin (
384
387
pinProtectedUserKey = pinProtectedUserKey, pin = PIN
385
388
)
Original file line number Diff line number Diff line change @@ -194,6 +194,7 @@ struct ContentView: View {
194
194
email: EMAIL,
195
195
privateKey: loginData. PrivateKey,
196
196
signingKey: nil ,
197
+ securityState: nil ,
197
198
method: InitUserCryptoMethod . password (
198
199
password: PASSWORD,
199
200
userKey: loginData. Key
@@ -253,6 +254,7 @@ struct ContentView: View {
253
254
email: EMAIL,
254
255
privateKey: privateKey,
255
256
signingKey: nil ,
257
+ securityState: nil ,
256
258
method: InitUserCryptoMethod . decryptedKey (
257
259
decryptedUserKey: key
258
260
)
@@ -281,6 +283,7 @@ struct ContentView: View {
281
283
email: EMAIL,
282
284
privateKey: privateKey,
283
285
signingKey: nil ,
286
+ securityState: nil ,
284
287
method: InitUserCryptoMethod . pin ( pin: PIN, pinProtectedUserKey: pinProtectedUserKey)
285
288
) )
286
289
}
You can’t perform that action at this time.
0 commit comments