VirtualBox

Ignore:
Timestamp:
Mar 27, 2014 5:00:13 AM (11 years ago)
Author:
vboxsync
Message:

added prefix X509 into all error definitions related to X509

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/checksum/x509.cpp

    r50887 r50904  
    8282    BIO_free(bio_memory);
    8383    if(!*out_cert)
    84         rc = VERR_READING_CERT_FROM_BIO;
     84        rc = VERR_X509_READING_CERT_FROM_BIO;
    8585
    8686    return rc;
     
    204204        if (evp_key == NULL)
    205205        {
    206             rc = VERR_EXTRACT_PUBKEY_FROM_CERT;
     206            rc = VERR_X509_EXTRACT_PUBKEY_FROM_CERT;
    207207            break;
    208208        }
     
    211211        if (rsa_key == NULL)
    212212        {
    213             rc = VERR_EXTRACT_RSA_FROM_PUBLIC_KEY;
     213            rc = VERR_X509_EXTRACT_RSA_FROM_PUBLIC_KEY;
    214214            break;
    215215        }
     
    224224        if (rc != 1)
    225225        {
    226             rc = VERR_RSA_VERIFICATION_FUILURE;
     226            rc = VERR_X509_RSA_VERIFICATION_FUILURE;
    227227        }
    228228
     
    274274        if(loc == -1)
    275275        {
    276             rc = VERR_NO_BASIC_CONSTARAINTS;
     276            rc = VERR_X509_NO_BASIC_CONSTARAINTS;
    277277            break;
    278278        }
     
    281281        if(!ext)
    282282        {
    283             rc = VERR_GETTING_EXTENSION_FROM_CERT;
     283            rc = VERR_X509_GETTING_EXTENSION_FROM_CERT;
    284284            break;
    285285        }
     
    288288        if(!extdata)
    289289        {
    290             rc = VERR_GETTING_DATA_FROM_EXTENSION;
     290            rc = VERR_X509_GETTING_DATA_FROM_EXTENSION;
    291291            break;
    292292        }
     
    295295        if(!X509V3_EXT_print(bio_memory, ext, 0, 0))
    296296        {
    297             rc = VERR_PRINT_EXTENSION_TO_BIO;
     297            rc = VERR_X509_PRINT_EXTENSION_TO_BIO;
    298298            break;
    299299        }
     
    364364            else
    365365            {
    366                 rc = VINF_NOT_SELFSIGNED_X509_CERTIFICATE;
     366                rc = VINF_X509_NOT_SELFSIGNED_CERTIFICATE;
    367367            }
    368368        }
    369369        else
    370370        {
    371             rc = VINF_NOT_SELFSIGNED_X509_CERTIFICATE;
     371            rc = VINF_X509_NOT_SELFSIGNED_CERTIFICATE;
    372372        }
    373373
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette