debug: log credentialId in wallet-setup for testing
This commit is contained in:
parent
c858a75a9c
commit
b8b28c1f5d
@ -131,6 +131,14 @@ document.addEventListener('DOMContentLoaded', async () => {
|
||||
const { SecureCredentialsService } = await import('../../services/secure-credentials.service');
|
||||
const secureCredentialsService = SecureCredentialsService.getInstance();
|
||||
|
||||
// TEST: Log credentialId from sessionStorage
|
||||
const storedCredentialId = sessionStorage.getItem('webauthn_credential_id');
|
||||
if (storedCredentialId) {
|
||||
console.log('🔐 TEST: credentialId from sessionStorage in wallet-setup:', storedCredentialId);
|
||||
} else {
|
||||
console.log('🔐 TEST: No credentialId found in sessionStorage');
|
||||
}
|
||||
|
||||
console.log('🔍 Testing all security modes to find a PBKDF2 key...');
|
||||
|
||||
// Tester tous les modes de sécurité pour trouver une clé PBKDF2 valide
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user