Question Checklist
Question Subject
Why ivBytes is not a public property on AES._CBC.IV?
Question Description
I would expect ivBytes to be public which would enable me to encode it to an external representation.
There is a workaround for this issue:
var copy = iv
let ivData = withUnsafeBytes(of: ©) { Data($0) }
Question Checklist
Question Subject
Why
ivBytesis not a public property onAES._CBC.IV?Question Description
I would expect
ivBytesto be public which would enable me to encode it to an external representation.There is a workaround for this issue: