In the IKEv2 VPN profile, what value should we pass for the CertificateType key? It is not clear from https://developer.apple.com/documentation/devicemanagement/vpn/ikev2
Is it the encryption algorithm of the keys? or signature algorithm?
For example, see below certificate payload.
Taken from the above payload, which among the below 2 algorithms should be used as a reference to pass the value in CertificateType payload?
Thanks
Is it the encryption algorithm of the keys? or signature algorithm?
For example, see below certificate payload.
Code Block keytool -printcert -file test.cer Owner: CN=abcd Issuer: CN=xyz Serial number: 68 Valid from: Thu Mar 25 15:39:45 2021 until: Sat Mar 26 15:39:45 2022 Certificate fingerprints: MD5: .... SHA1: .... SHA256: ..... Signature algorithm name: SHA384withECDSA Subject Public Key Algorithm: 521-bit EC key
Taken from the above payload, which among the below 2 algorithms should be used as a reference to pass the value in CertificateType payload?
Signature algorithm name: SHA384withECDSA
Subject Public Key Algorithm: 521-bit EC key
Thanks