[iOS] Hex representation of Credential passkey data was removed.
Chromium change: https://source.chromium.org/chromium/chromium/src/+/ab7fd2523efc13841c136e1b62d5b037d20331fe commit ab7fd2523efc13841c136e1b62d5b037d20331fe Author: Alexis Hetu <sugoi@chromium.org> Date: Mon Jul 8 19:59:12 2024 +0000 [iOS] Remove hex representation of passkey data The hex representation of data was very useful during the initial phases of development, but this is well understood enough now, so the representation can be simplified to just using NSData instead. Bug: 330355124
This commit is contained in:
@@ -217,13 +217,13 @@ extension CredentialListModel {
|
||||
var serviceIdentifier: String!
|
||||
var serviceName: String!
|
||||
var note: String!
|
||||
var syncId: String!
|
||||
var syncId: Data!
|
||||
var userDisplayName: String!
|
||||
var userId: String!
|
||||
var credentialId: String!
|
||||
var userId: Data!
|
||||
var credentialId: Data!
|
||||
var rpId: String!
|
||||
var privateKey: String!
|
||||
var encrypted: String!
|
||||
var privateKey: Data!
|
||||
var encrypted: Data!
|
||||
var creationTime: Int64 = 0
|
||||
|
||||
init(
|
||||
|
||||
Reference in New Issue
Block a user