Update TMCH root certificate (#1918)

See b/260945047.

Also refactored the corresponding tests, which should future updates easier.

This change should be deployed at or around 2023-02-15T16:00:00Z.
This commit is contained in:
Lai Jiang 2023-02-06 22:39:54 -05:00 committed by GitHub
parent a53b71ecd5
commit 85317e3982
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
192 changed files with 8972 additions and 7931 deletions

View file

@ -26,6 +26,8 @@ import java.net.URL;
/** Utility methods related to reading java resources. */
public final class ResourceUtils {
private ResourceUtils() {}
/** Loads a resource from a file as a string, assuming UTF-8 encoding. */
public static String readResourceUtf8(String filename) {
return readResourceUtf8(getResource(filename));