mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
crypto: Remove unused DER string functions
qcrypto_der_encode_octet_str_begin and _end have been unused
since they were added in
3b34ccad66
("crypto: Support DER encodings")
Remove them.
Signed-off-by: Dr. David Alan Gilbert <dave@treblig.org>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
cc5adbbd50
commit
04eeeec697
2 changed files with 0 additions and 35 deletions
13
crypto/der.c
13
crypto/der.c
|
@ -408,19 +408,6 @@ void qcrypto_der_encode_octet_str(QCryptoEncodeContext *ctx,
|
||||||
qcrypto_der_encode_prim(ctx, tag, src, src_len);
|
qcrypto_der_encode_prim(ctx, tag, src, src_len);
|
||||||
}
|
}
|
||||||
|
|
||||||
void qcrypto_der_encode_octet_str_begin(QCryptoEncodeContext *ctx)
|
|
||||||
{
|
|
||||||
uint8_t tag = QCRYPTO_DER_TAG(QCRYPTO_DER_TAG_CLASS_UNIV,
|
|
||||||
QCRYPTO_DER_TAG_ENC_PRIM,
|
|
||||||
QCRYPTO_DER_TYPE_TAG_OCT_STR);
|
|
||||||
qcrypto_der_encode_cons_begin(ctx, tag);
|
|
||||||
}
|
|
||||||
|
|
||||||
void qcrypto_der_encode_octet_str_end(QCryptoEncodeContext *ctx)
|
|
||||||
{
|
|
||||||
qcrypto_der_encode_cons_end(ctx);
|
|
||||||
}
|
|
||||||
|
|
||||||
size_t qcrypto_der_encode_ctx_buffer_len(QCryptoEncodeContext *ctx)
|
size_t qcrypto_der_encode_ctx_buffer_len(QCryptoEncodeContext *ctx)
|
||||||
{
|
{
|
||||||
return ctx->root.dlen;
|
return ctx->root.dlen;
|
||||||
|
|
22
crypto/der.h
22
crypto/der.h
|
@ -242,28 +242,6 @@ void qcrypto_der_encode_null(QCryptoEncodeContext *ctx);
|
||||||
void qcrypto_der_encode_octet_str(QCryptoEncodeContext *ctx,
|
void qcrypto_der_encode_octet_str(QCryptoEncodeContext *ctx,
|
||||||
const uint8_t *src, size_t src_len);
|
const uint8_t *src, size_t src_len);
|
||||||
|
|
||||||
/**
|
|
||||||
* qcrypto_der_encode_octet_str_begin:
|
|
||||||
* @ctx: the encode context.
|
|
||||||
*
|
|
||||||
* Start encoding a octet string, All fields between
|
|
||||||
* qcrypto_der_encode_octet_str_begin and qcrypto_der_encode_octet_str_end
|
|
||||||
* are encoded as an octet string. This is useful when we need to encode a
|
|
||||||
* encoded SEQUENCE as OCTET STRING.
|
|
||||||
*/
|
|
||||||
void qcrypto_der_encode_octet_str_begin(QCryptoEncodeContext *ctx);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* qcrypto_der_encode_octet_str_end:
|
|
||||||
* @ctx: the encode context.
|
|
||||||
*
|
|
||||||
* Finish encoding a octet string, All fields between
|
|
||||||
* qcrypto_der_encode_octet_str_begin and qcrypto_der_encode_octet_str_end
|
|
||||||
* are encoded as an octet string. This is useful when we need to encode a
|
|
||||||
* encoded SEQUENCE as OCTET STRING.
|
|
||||||
*/
|
|
||||||
void qcrypto_der_encode_octet_str_end(QCryptoEncodeContext *ctx);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* qcrypto_der_encode_ctx_buffer_len:
|
* qcrypto_der_encode_ctx_buffer_len:
|
||||||
* @ctx: the encode context.
|
* @ctx: the encode context.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue