Skip to main content
  • Home
  • login
  • Browse the archive

    swh mirror partner logo
swh logo
SoftwareHeritage
Software
Heritage
Mirror
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

  • 71eb0d5
  • /
  • providers
  • /
  • deserializers.inc
Raw File
Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
content badge Iframe embedding
swh:1:cnt:ead1c678782640f1a3ba6512a6a4043f2499fe9f
directory badge Iframe embedding
swh:1:dir:93589edb6f24d258a7111ea3efe3dd94378d52e8
deserializers.inc
/*
 * Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
 *
 * Licensed under the Apache License 2.0 (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
 */

#ifndef DESER
# error Macro DESER undefined
#endif

#ifndef OPENSSL_NO_DH
    DESER("DH", "yes", "der", der_to_dh_deserializer_functions),
#endif
#ifndef OPENSSL_NO_DSA
    DESER("DSA", "yes", "der", der_to_dsa_deserializer_functions),
#endif
#ifndef OPENSSL_NO_EC
    DESER("EC", "yes", "der", der_to_ec_deserializer_functions),
    DESER("ED25519", "yes", "der", der_to_ed25519_deserializer_functions),
    DESER("ED448", "yes", "der", der_to_ed448_deserializer_functions),
    DESER("X25519", "yes", "der", der_to_x25519_deserializer_functions),
    DESER("X448", "yes", "der", der_to_x448_deserializer_functions),
#endif
    DESER("RSA", "yes", "der", der_to_rsa_deserializer_functions),
    DESER("RSA-PSS", "yes", "der", der_to_rsapss_deserializer_functions),

    DESER("DER", "yes", "pem", pem_to_der_deserializer_functions),

ENEA — Copyright (C), ENEA. License: GNU AGPLv3+.
Legal notes  ::  JavaScript license information ::  Web API

back to top