]> git.saurik.com Git - apple/security.git/blobdiff - SecurityTests/clxutils/clAppUtils/printCertName.h
Security-57740.51.3.tar.gz
[apple/security.git] / SecurityTests / clxutils / clAppUtils / printCertName.h
diff --git a/SecurityTests/clxutils/clAppUtils/printCertName.h b/SecurityTests/clxutils/clAppUtils/printCertName.h
deleted file mode 100644 (file)
index bbae514..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef        _PRINT_CERT_NAME_H_
-#define _PRINT_CERT_NAME_H_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * Print subject and/or issuer of a cert.
- */
-typedef enum {
-    NameBoth = 0,
-    NameSubject,
-    NameIssuer
-} WhichName;
-
-extern void printCertName(
-    const unsigned char *cert,
-    unsigned certLen,
-    WhichName whichName);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* _PRINT_CERT_NAME_H_ */
-