|
| 1 | +const std = @import("std"); |
| 2 | +const Allocator = std.mem.Allocator; |
| 3 | +const passcay = @import("passcay"); |
| 4 | + |
| 5 | +// This is a temporary function to generate a fixed 16-byte user ID |
| 6 | +fn generateFixedUserId(alloc: Allocator) ![]const u8 { |
| 7 | + // Return a hardcoded ID that matches the expected base64url format |
| 8 | + return alloc.dupe(u8, "AAECAwQFBgcICQoLDA0ODw"); |
| 9 | +} |
| 10 | + |
| 11 | +// Improved JSON response function for attestation options |
| 12 | +fn createAttestationOptionsResponse( |
| 13 | + allocator: Allocator, |
| 14 | + username: []const u8, |
| 15 | + display_name: []const u8, |
| 16 | + attestation: ?[]const u8, |
| 17 | + challenges: anytype, // HashMap |
| 18 | + default_rp_name: []const u8, |
| 19 | + default_rp_id: []const u8, |
| 20 | + default_timeout: u32, |
| 21 | +) ![]const u8 { |
| 22 | + // Generate a user ID properly encoded for FIDO |
| 23 | + const user_id = "AAECAwQFBgcICQoLDA0ODw"; // Fixed base64url without padding |
| 24 | + |
| 25 | + // Generate a unique random challenge using passcay.challenge.generate() |
| 26 | + const challenge = try passcay.challenge.generate(allocator); |
| 27 | + defer allocator.free(challenge); |
| 28 | + |
| 29 | + // Save challenge for later verification |
| 30 | + const challenge_copy = try allocator.dupe(u8, challenge); |
| 31 | + try challenges.put(challenge_copy, challenge_copy); |
| 32 | + |
| 33 | + // Create JSON response |
| 34 | + const attestation_value = attestation orelse "none"; |
| 35 | + |
| 36 | + return try std.fmt.allocPrint(allocator, |
| 37 | + \\{{ |
| 38 | + \\ "status": "ok", |
| 39 | + \\ "errorMessage": "", |
| 40 | + \\ "rp": {{ |
| 41 | + \\ "name": "{s}", |
| 42 | + \\ "id": "{s}" |
| 43 | + \\ }}, |
| 44 | + \\ "user": {{ |
| 45 | + \\ "id": "{s}", |
| 46 | + \\ "name": "{s}", |
| 47 | + \\ "displayName": "{s}" |
| 48 | + \\ }}, |
| 49 | + \\ "challenge": "{s}", |
| 50 | + \\ "pubKeyCredParams": [ |
| 51 | + \\ {{ "type": "public-key", "alg": -7 }}, |
| 52 | + \\ {{ "type": "public-key", "alg": -257 }} |
| 53 | + \\ ], |
| 54 | + \\ "timeout": {d}, |
| 55 | + \\ "excludeCredentials": [], |
| 56 | + \\ "attestation": "{s}" |
| 57 | + \\}} |
| 58 | + , .{ |
| 59 | + default_rp_name, |
| 60 | + default_rp_id, |
| 61 | + user_id, |
| 62 | + username, |
| 63 | + display_name, |
| 64 | + challenge, |
| 65 | + default_timeout, |
| 66 | + attestation_value, |
| 67 | + }); |
| 68 | +} |
0 commit comments