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

Raw File
Permalink

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
content badge Iframe embedding
swh:1:cnt:4f5699418b7e97c379da31378f90112e35241538
/*
 * 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 DECODER
# error Macro DECODER undefined
#endif

#ifndef OPENSSL_NO_DH
    DECODER("DH", "yes", "der", ossl_der_to_dh_decoder_functions),
    DECODER("DHX", "yes", "der", ossl_der_to_dhx_decoder_functions),
#endif
#ifndef OPENSSL_NO_DSA
    DECODER("DSA", "yes", "der", ossl_der_to_dsa_decoder_functions),
    DECODER("DSA", "yes", "mblob", ossl_msblob_to_dsa_decoder_functions),
# ifndef OPENSSL_NO_RC4
    DECODER("DSA", "yes", "pvk", ossl_pvk_to_dsa_decoder_functions),
# endif
#endif
#ifndef OPENSSL_NO_EC
    DECODER("EC", "yes", "der", ossl_der_to_ec_decoder_functions),
    DECODER("ED25519", "yes", "der", ossl_der_to_ed25519_decoder_functions),
    DECODER("ED448", "yes", "der", ossl_der_to_ed448_decoder_functions),
    DECODER("X25519", "yes", "der", ossl_der_to_x25519_decoder_functions),
    DECODER("X448", "yes", "der", ossl_der_to_x448_decoder_functions),
#endif
    DECODER("RSA", "yes", "der", ossl_der_to_rsa_decoder_functions),
    DECODER("RSA-PSS", "yes", "der", ossl_der_to_rsapss_decoder_functions),
#ifndef OPENSSL_NO_DSA
    DECODER("RSA", "yes", "mblob", ossl_msblob_to_rsa_decoder_functions),
# ifndef OPENSSL_NO_RC4
    DECODER("RSA", "yes", "pvk", ossl_pvk_to_rsa_decoder_functions),
# endif
#endif

    DECODER("DER", "yes", "pem", ossl_pem_to_der_decoder_functions),

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

back to top