Changeset 105949 in vbox for trunk/src/libs/openssl-3.1.7/crypto/rsa
- Timestamp:
- Sep 4, 2024 12:53:14 PM (6 months ago)
- svn:sync-xref-src-repo-rev:
- 164683
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/openssl-3.1.7/crypto/rsa/rsa_oaep.c
r105945 r105949 1 1 /* 2 * Copyright 1999-202 4The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 4 * Licensed under the Apache License 2.0 (the "License"). You may not use … … 187 187 mdlen = EVP_MD_get_size(md); 188 188 189 if (tlen <= 0 || flen <= 0 || mdlen <= 0)189 if (tlen <= 0 || flen <= 0) 190 190 return -1; 191 191 /*
Note:
See TracChangeset
for help on using the changeset viewer.