Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ././../../../../../../../usr/include/libsoftcrypto.h
Real path: /usr/include/libsoftcrypto.h
Zurück
/* * Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved. */ #ifndef _LIBSOFTCRYPTO_H #define _LIBSOFTCRYPTO_H #ifdef __cplusplus extern "C" { #endif /* * WARNING: * * This header file is obsolete and has been replaced by libucrypto.h. * The contents of libsoftcrypto now reside in libucrypto. * * libsoftcrypto and its header file exist for backward compatibility. * They may not be supported in future releases, therefore consumers * should transition to libucrypto. */ #include <libucrypto.h> /* * Legacy names for Solaris 11.2 source compatibility with old versions of * <sys/crypto/common.h>. * These names are also defined in pkcs11t.h. * Do not use these names in new source. */ #ifndef CK_AES_CTR_PARAMS #define CK_AES_CTR_PARAMS crypto_ctr_params_t #define ulCounterBits ct_ctr_bits #define cb ct_cb #endif #ifndef CK_AES_CCM_PARAMS #define CK_AES_CCM_PARAMS crypto_ccm_params_t #define ulMACSize cc_mac_size #define ulNonceSize cc_nonce_size #define ulAuthDataSize cc_auth_data_size #define ulDataSize cc_data_size #define nonce cc_nonce #define authData cc_auth_data #endif #ifndef CK_AES_GCM_PARAMS #define CK_AES_GCM_PARAMS crypto_gcm_params_t #define pIv gc_iv #define ulIvLen gc_iv_len #define ulIvBits gc_iv_bits #define pAAD gc_aad #define ulAADLen gc_aad_len #define ulTagBits gc_tag_bits #endif /* * Legacy names for attribute types to use for passing a RSA public key * or a private key. Do not use these names in new source. Use * CRYPTO_ATTR_* names in common_defs.h instead. */ #define SUN_CKA_MODULUS 0x00000120 #define SUN_CKA_MODULUS_BITS 0x00000121 #define SUN_CKA_PUBLIC_EXPONENT 0x00000122 #define SUN_CKA_PRIVATE_EXPONENT 0x00000123 #define SUN_CKA_PRIME_1 0x00000124 #define SUN_CKA_PRIME_2 0x00000125 #define SUN_CKA_EXPONENT_1 0x00000126 #define SUN_CKA_EXPONENT_2 0x00000127 #define SUN_CKA_COEFFICIENT 0x00000128 #define SUN_CKA_PRIME 0x00000130 #define SUN_CKA_SUBPRIME 0x00000131 #define SUN_CKA_BASE 0x00000132 #ifdef __cplusplus } #endif #endif /* _LIBSOFTCRYPTO_H */