refactor(性能测试): 支持上传ssl证书

This commit is contained in:
CaptainB 2022-01-25 10:19:38 +08:00 committed by 刘瑞斌
parent 07a19cc63a
commit a797305c68
1 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,9 @@ public enum FileType {
JMX(".jmx"), CSV(".csv"), JSON(".json"), PDF(".pdf"),
JPG(".jpg"), PNG(".png"), JPEG(".jpeg"), DOC(".doc"),
XLSX(".xlsx"), DOCX(".docx"), JAR(".jar"), JS(".js"), TXT(".txt"),
P12("p12"),JKS("jks"),PFX("pfx");
P12(".p12"), JKS(".jks"), PFX(".pfx"),
DER(".der"), CER(".cer"), PEM(".pem"), CRT(".crt"),
;
// 保存后缀
private String suffix;