summaryrefslogtreecommitdiff
path: root/src/gcrypt/asn1.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gcrypt/asn1.h')
-rw-r--r--src/gcrypt/asn1.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/gcrypt/asn1.h b/src/gcrypt/asn1.h
deleted file mode 100644
index d05b5305..00000000
--- a/src/gcrypt/asn1.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * XML Security Library
- *
- * gcrypt/asn1.h: internal header only used during the compilation
- *
- * This is free software; see Copyright file in the source
- * distribution for preciese wording.
- *
- * Copyright (C) 2010 Aleksey Sanin <aleksey@aleksey.com>
- */
-#ifndef __XMLSEC_GCRYPT_ASN1_H__
-#define __XMLSEC_GCRYPT_ASN1_H__
-
-#ifndef XMLSEC_PRIVATE
-#error "gcrypt/asn1.h file contains private xmlsec-gcrypt definitions and should not be used outside xmlsec or xmlsec-<crypto> libraries"
-#endif /* XMLSEC_PRIVATE */
-
-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
-
-enum xmlSecGCryptDerKeyType {
- xmlSecGCryptDerKeyTypeAuto = 0,
- xmlSecGCryptDerKeyTypePublicDsa,
- xmlSecGCryptDerKeyTypePublicRsa,
- xmlSecGCryptDerKeyTypePrivateDsa,
- xmlSecGCryptDerKeyTypePrivateRsa
-};
-
-xmlSecKeyDataPtr xmlSecGCryptParseDer (const xmlSecByte * der,
- xmlSecSize derlen,
- enum xmlSecGCryptDerKeyType type);
-
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-
-
-#endif /*__XMLSEC_GCRYPT_ASN1_H__ */