Home
last modified time | relevance | path

Searched refs:QCryptoEncodeContext (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/crypto/
H A Dder.h25 typedef struct QCryptoEncodeContext QCryptoEncodeContext; typedef
184 QCryptoEncodeContext *qcrypto_der_encode_ctx_new(void);
193 void qcrypto_der_encode_seq_begin(QCryptoEncodeContext *ctx);
202 void qcrypto_der_encode_seq_end(QCryptoEncodeContext *ctx);
213 void qcrypto_der_encode_oid(QCryptoEncodeContext *ctx,
224 void qcrypto_der_encode_int(QCryptoEncodeContext *ctx,
233 void qcrypto_der_encode_null(QCryptoEncodeContext *ctx);
242 void qcrypto_der_encode_octet_str(QCryptoEncodeContext *ctx,
251 size_t qcrypto_der_encode_ctx_buffer_len(QCryptoEncodeContext *ctx);
261 void qcrypto_der_encode_ctx_flush_and_free(QCryptoEncodeContext *ctx,
H A Dder.c34 typedef struct QCryptoEncodeContext { struct
38 } QCryptoEncodeContext; argument
313 static void qcrypto_der_encode_prim(QCryptoEncodeContext *ctx, uint8_t tag, in qcrypto_der_encode_prim()
332 QCryptoEncodeContext *qcrypto_der_encode_ctx_new(void) in qcrypto_der_encode_ctx_new()
334 QCryptoEncodeContext *ctx = g_new0(QCryptoEncodeContext, 1); in qcrypto_der_encode_ctx_new()
340 static void qcrypto_der_encode_cons_begin(QCryptoEncodeContext *ctx, in qcrypto_der_encode_cons_begin()
352 static void qcrypto_der_encode_cons_end(QCryptoEncodeContext *ctx) in qcrypto_der_encode_cons_end()
363 void qcrypto_der_encode_seq_begin(QCryptoEncodeContext *ctx) in qcrypto_der_encode_seq_begin()
371 void qcrypto_der_encode_seq_end(QCryptoEncodeContext *ctx) in qcrypto_der_encode_seq_end()
376 void qcrypto_der_encode_oid(QCryptoEncodeContext *ctx, in qcrypto_der_encode_oid()
[all …]
H A Drsakey.c57 QCryptoEncodeContext *ctx = qcrypto_der_encode_ctx_new(); in qcrypto_akcipher_rsakey_export_p8info()