summaryrefslogtreecommitdiffhomepage
path: root/packages/server/src/helpers/convertAAGUIDToString.ts
blob: 0fb8356308b78acad514f51523b1e2e794baa5b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * Convert the aaguid buffer in authData into a UUID string
 */
export function convertAAGUIDToString(aaguid: Buffer): string {
  // Raw Hex: adce000235bcc60a648b0b25f1f05503
  const hex = aaguid.toString('hex');

  const segments: string[] = [
    hex.slice(0, 8), // 8
    hex.slice(8, 12), // 4
    hex.slice(12, 16), // 4
    hex.slice(16, 20), // 4
    hex.slice(20, 32), // 8
  ];

  // Formatted: adce0002-35bc-c60a-648b-0b25f1f05503
  return segments.join('-');
}