/
githubmirror
/
xmlsec
Обзор
Документация
Войти
/
githubmirror
/
xmlsec
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/gcrypt/asn1.h
41 строка
1 KB
lsh123
Update file headers for doxygen, use common copyright header, bump copyright to 2026 (#1122)
07 апр 2026, 04:13
Не верифицирован
07 апр 2026, 04:13
2e557ee
Код
Авторство
О чём код?
/** * XML Security Library (http://www.aleksey.com/xmlsec). * * This is free software; see the Copyright file in the source distribution for precise wording. * * Copyright (C) 2002-2026 Aleksey Sanin <aleksey@aleksey.com>. All Rights Reserved. */ /** * @brief Internal ASN1 helper functions for GCrypt. */ #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, xmlSecGCryptDerKeyTypePrivateDsa, xmlSecGCryptDerKeyTypePublicRsa, xmlSecGCryptDerKeyTypePrivateRsa, xmlSecGCryptDerKeyTypePublicEc, xmlSecGCryptDerKeyTypePrivateEc }; xmlSecKeyDataPtr xmlSecGCryptParseDer (const xmlSecByte * der, xmlSecSize derlen, enum xmlSecGCryptDerKeyType type); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /*__XMLSEC_GCRYPT_ASN1_H__ */