What I used to do in obj-c:
unsigned char cHMAC[CC_SHA1_DIGEST_LENGTH];
what I tried in swift found here unsigned char in Swift:
let cHMAC = [CUnsignedChar](count: CC_SHA1_DIGEST_LENGTH)
However this does not build because extra argument count in call
Any ideas how I can translate the first code to swift?