From: tb Date: Wed, 20 Dec 2023 10:15:30 +0000 (+0000) Subject: Remove commented out version of EVP_SealUpdate() X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=2a4b60856a17fbfe09958e2251c6dea27972340e;p=openbsd Remove commented out version of EVP_SealUpdate() --- diff --git a/lib/libcrypto/evp/p_seal.c b/lib/libcrypto/evp/p_seal.c index 7f29ea0ca23..e7b0e6f2328 100644 --- a/lib/libcrypto/evp/p_seal.c +++ b/lib/libcrypto/evp/p_seal.c @@ -1,4 +1,4 @@ -/* $OpenBSD: p_seal.c,v 1.17 2023/11/18 09:37:15 tb Exp $ */ +/* $OpenBSD: p_seal.c,v 1.18 2023/12/20 10:15:30 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -103,18 +103,6 @@ EVP_SealInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, unsigned char **ek, return (npubk); } -/* MACRO -void EVP_SealUpdate(ctx,out,outl,in,inl) -EVP_CIPHER_CTX *ctx; -unsigned char *out; -int *outl; -unsigned char *in; -int inl; - { - EVP_EncryptUpdate(ctx,out,outl,in,inl); - } -*/ - int EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) {