VirtualBox

Changeset 41911 in vbox


Ignore:
Timestamp:
Jun 25, 2012 2:42:30 PM (13 years ago)
Author:
vboxsync
Message:

backed out r78763 and r78763

Location:
trunk
Files:
2 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/mangling.h

    r41909 r41911  
    10211021# define RTRandAdvCreateSystemFaster                    RT_MANGLER(RTRandAdvCreateSystemFaster)
    10221022# define RTRandAdvCreateSystemTruer                     RT_MANGLER(RTRandAdvCreateSystemTruer)
    1023 # define RTRandAdvCreateOpenssl                         RT_MANGLER(RTRandAdvCreateOpenssl)
    10241023# define RTRandAdvDestroy                               RT_MANGLER(RTRandAdvDestroy)
    10251024# define RTRandAdvRestoreState                          RT_MANGLER(RTRandAdvRestoreState)
  • trunk/include/iprt/rand.h

    r41909 r41911  
    151151
    152152/**
    153  * Create an instance of the openssl random number generator.
    154  *
    155  * @returns IPRT status code.
    156  * @retval  VERR_NOT_SUPPORTED on platforms which doesn't have this feature.
    157  *
    158  * @param   phRand      Where to store the handle to the generator.
    159  *
    160  */
    161 RTDECL(int) RTRandAdvCreateOpenssl(PRTRAND phRand) RT_NO_THROW;
    162 
    163 /**
    164153 * Create an instance of the truer random number generator for the OS.
    165154 *
  • trunk/src/VBox/Runtime/Makefile.kmk

    r41909 r41911  
    364364        common/rand/randadv.cpp \
    365365        common/rand/randparkmiller.cpp \
    366         common/rand/randopenssl.cpp \
    367366        common/sort/RTSortIsSorted.cpp \
    368367        common/sort/RTSortApvIsSorted.cpp \
     
    10301029RuntimeBldProg_BLD_TRG_ARCH     := $(KBUILD_HOST_ARCH)
    10311030RuntimeBldProg_BLD_TRG_CPU      := $(KBUILD_HOST_CPU)
    1032 RuntimeBldProg_SOURCES          := $(filter-out \
    1033         common/rand/randopenssl.cpp \
    1034         , $(RuntimeR3_SOURCES))
    1035 RuntimeBldProg_SOURCES          += \
    1036         generic/RTRandAdvCreateOpenssl-generic.cpp
    10371031
    10381032
     
    10571051        common/checksum/RTSha1Digest.cpp \
    10581052        common/checksum/sha% \
    1059         common/rand/randopenssl.cpp \
    10601053        generic/RTLogWriteUser-generic.cpp \
    10611054        , $(RuntimeR3_SOURCES))
    10621055RuntimeGuestR3_SOURCES              += \
    10631056        common/time/timesysalias.cpp \
    1064         VBox/logbackdoor.cpp \
    1065         generic/RTRandAdvCreateOpenssl-generic.cpp
     1057        VBox/logbackdoor.cpp
    10661058RuntimeGuestR3_SOURCES.$(KBUILD_TARGET)      := $(RuntimeR3_SOURCES.$(KBUILD_TARGET))
    10671059RuntimeGuestR3_SOURCES.$(KBUILD_HOST)        := $(RuntimeR3_SOURCES.$(KBUILD_HOST))
  • trunk/src/VBox/Runtime/common/rand/rand.cpp

    r41909 r41911  
    6262{
    6363    RTRAND hRand;
    64     int rc = RTRandAdvCreateOpenssl(&hRand);
    65     if (RT_FAILURE(rc))
    66         rc = RTRandAdvCreateSystemFaster(&hRand);
     64    int rc = RTRandAdvCreateSystemFaster(&hRand);
    6765    if (RT_FAILURE(rc))
    6866        rc = RTRandAdvCreateParkMiller(&hRand);
  • trunk/src/VBox/Storage/testcase/Makefile.kmk

    r41909 r41911  
    7777 vbox-img_TEMPLATE = VBOXR3STATIC
    7878 vbox-img_DEFS += IN_VBOXDDU IN_VBOXDDU_STATIC VBOX_HDD_NO_DYNAMIC_BACKENDS IN_RT_R3
    79  vbox-img_SDKS = VBOX_OPENSSL
    8079 vbox-img_SOURCES = \
    8180        vbox-img.cpp \
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