Question - what is the “Secure Enclave: False” fie...
# kolide
e
Question - what is the “Secure Enclave: False” field indicating in the System Touch ID Configuration dashboard box for a Mac in Kolide K2. This is for a MacBook Pro 2021 w/M1 (which has Secure Enclave hardware built-in).
f
I'd have to check, but I suspect this has something to do with the secure enclave not being discrete as it was on T1/T2 macs.
And that we were keying off a value that the Apple Silicon secure enclave is not reporting.
yep, looks like that is it:
Copy code
r := regexp.MustCompile(` (?P<chip>T\d) `) // Matching on: Apple T[1|2] Security Chip
	match := r.FindStringSubmatch(stdout.String())
	if len(match) == 0 {
		secureEnclaveCPU = ""
	} else {
		secureEnclaveCPU = match[1]
	}
I'll file an issue and take a look at how/whether we can retrieve that information for silicon
e
Ah -got it, thanks much!