Changeset 94404 in vbox for trunk/src/libs/openssl-3.0.2/apps/passwd.c
- Timestamp:
- Mar 31, 2022 9:00:36 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 150730
- Location:
- trunk/src/libs/openssl-3.0.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/openssl-3.0.2
- Property svn:mergeinfo
-
old new 13 13 /vendor/openssl/1.1.1k:145841-145843 14 14 /vendor/openssl/3.0.1:150323-150324 15 /vendor/openssl/current:147554-150322 15 /vendor/openssl/3.0.2:150728-150729 16 /vendor/openssl/current:147554-150727
-
- Property svn:mergeinfo
-
trunk/src/libs/openssl-3.0.2/apps/passwd.c
r94082 r94404 1 1 /* 2 * Copyright 2000-202 1The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 4 * Licensed under the Apache License 2.0 (the "License"). You may not use … … 411 411 } 412 412 if (!EVP_DigestFinal_ex(md, buf, NULL)) 413 return NULL;413 goto err; 414 414 415 415 for (i = 0; i < 1000; i++) { … … 637 637 } 638 638 if (!EVP_DigestFinal_ex(md, buf, NULL)) 639 return NULL;639 goto err; 640 640 641 641 /* P sequence */ … … 648 648 649 649 if (!EVP_DigestFinal_ex(md2, temp_buf, NULL)) 650 return NULL;650 goto err; 651 651 652 652 if ((p_bytes = OPENSSL_zalloc(passwd_len)) == NULL) … … 665 665 666 666 if (!EVP_DigestFinal_ex(md2, temp_buf, NULL)) 667 return NULL;667 goto err; 668 668 669 669 if ((s_bytes = OPENSSL_zalloc(salt_len)) == NULL)
Note:
See TracChangeset
for help on using the changeset viewer.