mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-07-02 02:28:26 +00:00
Merge pull request #1399 from mazimkhan/feature-opaque-keys
Enable deprecated API wrappers for _ALT implementation
This commit is contained in:
commit
31a24b8d0c
|
@ -158,6 +158,7 @@ int mbedtls_internal_md2_process( mbedtls_md2_context *ctx )
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
#endif /* !MBEDTLS_MD2_PROCESS_ALT */
|
||||||
|
|
||||||
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
||||||
void mbedtls_md2_process( mbedtls_md2_context *ctx )
|
void mbedtls_md2_process( mbedtls_md2_context *ctx )
|
||||||
|
@ -165,7 +166,6 @@ void mbedtls_md2_process( mbedtls_md2_context *ctx )
|
||||||
mbedtls_internal_md2_process( ctx );
|
mbedtls_internal_md2_process( ctx );
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif /* !MBEDTLS_MD2_PROCESS_ALT */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* MD2 process buffer
|
* MD2 process buffer
|
||||||
|
|
|
@ -224,6 +224,7 @@ int mbedtls_internal_md4_process( mbedtls_md4_context *ctx,
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
#endif /* !MBEDTLS_MD4_PROCESS_ALT */
|
||||||
|
|
||||||
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
||||||
void mbedtls_md4_process( mbedtls_md4_context *ctx,
|
void mbedtls_md4_process( mbedtls_md4_context *ctx,
|
||||||
|
@ -232,7 +233,6 @@ void mbedtls_md4_process( mbedtls_md4_context *ctx,
|
||||||
mbedtls_internal_md4_process( ctx, data );
|
mbedtls_internal_md4_process( ctx, data );
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif /* !MBEDTLS_MD4_PROCESS_ALT */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* MD4 process buffer
|
* MD4 process buffer
|
||||||
|
|
|
@ -243,6 +243,7 @@ int mbedtls_internal_md5_process( mbedtls_md5_context *ctx,
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
#endif /* !MBEDTLS_MD5_PROCESS_ALT */
|
||||||
|
|
||||||
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
||||||
void mbedtls_md5_process( mbedtls_md5_context *ctx,
|
void mbedtls_md5_process( mbedtls_md5_context *ctx,
|
||||||
|
@ -251,7 +252,6 @@ void mbedtls_md5_process( mbedtls_md5_context *ctx,
|
||||||
mbedtls_internal_md5_process( ctx, data );
|
mbedtls_internal_md5_process( ctx, data );
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif /* !MBEDTLS_MD5_PROCESS_ALT */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* MD5 process buffer
|
* MD5 process buffer
|
||||||
|
|
|
@ -277,6 +277,7 @@ int mbedtls_internal_sha1_process( mbedtls_sha1_context *ctx,
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
#endif /* !MBEDTLS_SHA1_PROCESS_ALT */
|
||||||
|
|
||||||
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
||||||
void mbedtls_sha1_process( mbedtls_sha1_context *ctx,
|
void mbedtls_sha1_process( mbedtls_sha1_context *ctx,
|
||||||
|
@ -285,7 +286,6 @@ void mbedtls_sha1_process( mbedtls_sha1_context *ctx,
|
||||||
mbedtls_internal_sha1_process( ctx, data );
|
mbedtls_internal_sha1_process( ctx, data );
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif /* !MBEDTLS_SHA1_PROCESS_ALT */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SHA-1 process buffer
|
* SHA-1 process buffer
|
||||||
|
|
|
@ -246,6 +246,7 @@ int mbedtls_internal_sha256_process( mbedtls_sha256_context *ctx,
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
#endif /* !MBEDTLS_SHA256_PROCESS_ALT */
|
||||||
|
|
||||||
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
||||||
void mbedtls_sha256_process( mbedtls_sha256_context *ctx,
|
void mbedtls_sha256_process( mbedtls_sha256_context *ctx,
|
||||||
|
@ -254,7 +255,6 @@ void mbedtls_sha256_process( mbedtls_sha256_context *ctx,
|
||||||
mbedtls_internal_sha256_process( ctx, data );
|
mbedtls_internal_sha256_process( ctx, data );
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif /* !MBEDTLS_SHA256_PROCESS_ALT */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SHA-256 process buffer
|
* SHA-256 process buffer
|
||||||
|
|
|
@ -277,6 +277,7 @@ int mbedtls_internal_sha512_process( mbedtls_sha512_context *ctx,
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
#endif /* !MBEDTLS_SHA512_PROCESS_ALT */
|
||||||
|
|
||||||
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
||||||
void mbedtls_sha512_process( mbedtls_sha512_context *ctx,
|
void mbedtls_sha512_process( mbedtls_sha512_context *ctx,
|
||||||
|
@ -285,7 +286,6 @@ void mbedtls_sha512_process( mbedtls_sha512_context *ctx,
|
||||||
mbedtls_internal_sha512_process( ctx, data );
|
mbedtls_internal_sha512_process( ctx, data );
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif /* !MBEDTLS_SHA512_PROCESS_ALT */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SHA-512 process buffer
|
* SHA-512 process buffer
|
||||||
|
|
Loading…
Reference in a new issue