Home
last modified time | relevance | path

Searched refs:decode (Results 1 – 25 of 48) sorted by relevance

12

/openssl/crypto/comp/
H A Dc_brotli.c388 } decode; member
459 if (ctx->decode.state == NULL) in bio_brotli_new()
520 if (ctx->decode.buf == NULL) { in bio_brotli_read()
521 ctx->decode.buf = OPENSSL_malloc(ctx->decode.bufsize); in bio_brotli_read()
526 ctx->decode.next_in = ctx->decode.buf; in bio_brotli_read()
527 ctx->decode.avail_in = 0; in bio_brotli_read()
535 while (ctx->decode.avail_in > 0 || BrotliDecoderHasMoreOutput(ctx->decode.state)) { in bio_brotli_read()
536 …bret = BrotliDecoderDecompressStream(ctx->decode.state, &ctx->decode.avail_in, (const uint8_t**)&c… in bio_brotli_read()
544 if (BrotliDecoderIsFinished(ctx->decode.state) || ctx->decode.avail_out == 0) in bio_brotli_read()
556 ret = BIO_read(next, ctx->decode.buf, ctx->decode.bufsize); in bio_brotli_read()
[all …]
/openssl/doc/man7/
H A Dprovider-decoder.pod30 /* Functions to decode object data */
44 I<The term "decode" is used throughout this manual. This includes but is
50 read from the given B<OSSL_CORE_BIO>. If the caller wants to decode
61 implementation to decode an object from PEM to DER, and another one
120 can decode.
225 OSSL_FUNC_decoder_decode() should decode the data as read from
243 this function couldn't decode the input into anything, because there may be
244 another decoder implementation that can decode it into something.
247 decode the input into anything.
H A Dossl_store-file.pod26 which are used to try to decode diverse types of file contents.
/openssl/test/recipes/04-test_pem_reading_data/
H A DNOTES.txt2 ASCII text of cert.pem and dsa.pem, respectively -- they should decode to the
/openssl/doc/man3/
H A DEVP_EncodeInit.pod8 EVP_DecodeBlock - EVP base64 encode/decode routines
42 the encode/decode functions.
44 EVP_ENCODE_CTX_free() cleans up an encode/decode context B<ctx> and frees up the
104 This function will attempt to decode as much data as possible in chunks of up
136 but it will never decode additional data. If there is no residual data
141 EVP_DecodeBlock() will decode the block of B<n> characters of base64 data
H A Di2d_re_X509_tbs.pod7 - X509 encode and decode functions
21 The X509 encode and decode routines encode and parse an
H A Dd2i_PrivateKey.pod10 - decode and encode functions for reading and saving EVP_PKEY structures
69 d2i_PrivateKey_ex() and d2i_PrivateKey() respectively except that they decode
97 To decode a key with type B<EVP_PKEY_EC>, d2i_PublicKey() requires I<*a> to be
H A DOSSL_DECODER_from_bio.pod50 To decode an RSA key encoded with PEM from a bio:
75 To decode an EC key encoded with DER from a buffer:
H A DX509_PUBKEY_new.pod93 similar to d2i_PUBKEY() and i2d_PUBKEY() except they decode or encode using a
97 they decode using a B<BIO> or B<FILE> pointer.
126 The B<X509_PUBKEY> functions can be used to encode and decode public keys
H A Do2i_SCT_LIST.pod6 decode and encode Signed Certificate Timestamp lists in TLS wire format
H A Dd2i_RSAPrivateKey.pod130 B<d2i_I<TYPE>PrivateKey>() and derivates thereof decode DER encoded
133 B<d2i_I<TYPE>PublicKey>() and derivates thereof decode DER encoded
136 B<d2i_I<TYPE>params>() and derivates thereof decode DER encoded B<I<TYPE>>
139 B<d2i_I<TYPE>_PUBKEY>() and derivates thereof decode DER encoded B<I<TYPE>>
H A DASN1_item_d2i_bio.pod8 - decode and encode DER-encoded ASN.1 structures
84 ASN1_item_unpack() uses ASN1_item_d2i() to decode the DER-encoded B<ASN1_STRING>
H A Dd2i_SSL_SESSION.pod20 These functions decode and encode an SSL_SESSION object.
H A DOSSL_DECODER.pod47 decode encoded data into an object of some type that the rest
54 method is expected to be able to decode, and the properties are
H A DEVP_PKEY_ASN1_METHOD.pod165 The pub_decode() and pub_encode() methods are called to decode /
185 The priv_decode() and priv_encode() methods are called to decode /
214 The param_decode() and param_encode() methods are called to decode /
268 The old_priv_decode() and old_priv_encode() methods decode / encode
H A Dd2i_PKCS8PrivateKey_bio.pod34 The PKCS#8 functions encode and decode private keys in PKCS#8 format using both
H A DX509_get_pubkey.pod26 X509_get_pubkey() attempts to decode the public key for certificate B<x>. If
H A DBIO_new_CMS.pod49 There is currently no corresponding inverse BIO: i.e. one which can decode
H A DX509V3_get_d2i.pod11 X509_REVOKED_get0_extensions - X509 extension decode and encode functions
62 X509V3_EXT_d2i() attempts to decode the ASN.1 data contained in extension
H A DOSSL_DECODER_CTX.pod132 a decoder, to be used to attempt to decode some encoded input.
165 decode instance I<decoder_inst> that the constructor got and an object
H A DX509_EXTENSION_set_object.pod62 use the extension encode and decode functions instead such as
/openssl/crypto/encode_decode/
H A Dencoder_local.h53 OSSL_FUNC_decoder_decode_fn *decode; member
H A Ddecoder_meth.c256 if (decoder->decode == NULL) in ossl_decoder_from_algorithm()
257 decoder->decode = OSSL_FUNC_decoder_decode(fns); in ossl_decoder_from_algorithm()
272 || decoder->decode == NULL) { in ossl_decoder_from_algorithm()
/openssl/crypto/err/
H A Dopenssl.txt22 ASN1_R_DECODE_ERROR:110:decode error
327 CMS_R_DECODE_ERROR:187:decode error
418 COMP_R_ZSTD_DECODE_ERROR:108:zstd decode error
527 DH_R_BN_DECODE_ERROR:109:bn decode error
537 DH_R_DECODE_ERROR:104:decode error
558 DSA_R_BN_DECODE_ERROR:108:bn decode error
560 DSA_R_DECODE_ERROR:104:decode error
597 EC_R_DECODE_ERROR:142:decode error
727 EVP_R_DECODE_ERROR:114:decode error
924 PEM_R_BAD_BASE64_DECODE:100:bad base64 decode
[all …]
/openssl/test/recipes/
H A D80-test_pkcs12.t39 $pass = Encode::encode("cp1253",Encode::decode("utf-8",$pass));

Completed in 94 milliseconds

12