We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am looking at the out put of fetch-microsoft-authroot.sh in authroot.json. The CertFriendlyName looks like that:
"CertFriendlyName" : "C\u0000e\u0000r\u0000t\u0000p\u0000l\u0000u\u0000s\u0000 \u0000R\u0000o\u0000o\u0000t\u0000 \u0000C\u0000A\u0000 \u0000G\u00002\u0000\u0000"
Doing
grep CertFriendlyName authroot.json | sed 's/\\u0000//g'
produces something really "friendly" like:
"CertFriendlyName" : "Certplus Root CA G2"
I am sure that it's easy to get that into the perl script parse-microsoft-authroot.pl. Changing
-$CertFriendlyName =~ s/\x00$//g; +$CertFriendlyName =~ s/\x00//g;
$CertFriendlyName =~ s/\x00$//g;
$CertFriendlyName =~ s/\x00//g;
does the job for me. But it might break other things.
The text was updated successfully, but these errors were encountered:
This does look like UTF16, wonder if that is the string type or if the subject really is borken.
Sorry, something went wrong.
No branches or pull requests
Subject: parse-microsoft-authroot.pl
I am looking at the out put of fetch-microsoft-authroot.sh in authroot.json.
The CertFriendlyName looks like that:
Doing
grep CertFriendlyName authroot.json | sed 's/\\u0000//g'
produces something really "friendly" like:
I am sure that it's easy to get that into the perl script parse-microsoft-authroot.pl. Changing
-
$CertFriendlyName =~ s/\x00$//g;
+
$CertFriendlyName =~ s/\x00//g;
does the job for me. But it might break other things.
The text was updated successfully, but these errors were encountered: