Topic: How to change value of constants without breaking everything?
I need the commonName buffer to be bigger (some subdomain names can get quite large). When I either adjust the array size constant directly or alter the CTC_NAME_SIZE value, the resulting certificate gets all misaligned and basically doesn't work.
To save me reading through all the source code to connect the dots, which data do I need to change to do this?
enum Ctc_Misc {
CTC_NAME_SIZE = 64,
CTC_DATE_SIZE = 32,
CTC_MAX_ALT_SIZE = 8192, /* may be huge */
CTC_SERIAL_SIZE = 8
};