Searched defs:Input (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Cipher/
H A DCryptArc4.c86 This function performs ARC4 encryption on data buffer pointed by Input, of specified
92 If Input is NULL, then return FALSE.
96 @param[in] Input Pointer to the buffer containing the data to be encrypted.
97 @param[in] InputSize Size of the Input buffer in bytes.
108 IN CONST UINT8 *Input,
118 if (Arc4Context == NULL || Input == NULL || Output == NULL) {
124 RC4 (Rc4Key, (UINT32) InputSize, Input, Output);
132 This function performs ARC4 decryption on data buffer pointed by Input, of specified
138 If Input is NULL, then return FALSE.
142 @param[in] Input Pointe
106 Arc4Encrypt( IN OUT VOID *Arc4Context, IN CONST UINT8 *Input, IN UINTN InputSize, OUT UINT8 *Output ) argument
152 Arc4Decrypt( IN OUT VOID *Arc4Context, IN UINT8 *Input, IN UINTN InputSize, OUT UINT8 *Output ) argument
[all...]
H A DCryptAes.c90 This function performs AES encryption on data buffer pointed by Input, of specified
98 If Input is NULL, then return FALSE.
103 @param[in] Input Pointer to the buffer containing the data to be encrypted.
104 @param[in] InputSize Size of the Input buffer in bytes.
115 IN CONST UINT8 *Input,
125 if (AesContext == NULL || Input == NULL || (InputSize % AES_BLOCK_SIZE) != 0 || Output == NULL) {
135 AES_ecb_encrypt (Input, Output, AesKey, AES_ENCRYPT);
136 Input += AES_BLOCK_SIZE;
147 This function performs AES decryption on data buffer pointed by Input, of specified
155 If Input i
113 AesEcbEncrypt( IN VOID *AesContext, IN CONST UINT8 *Input, IN UINTN InputSize, OUT UINT8 *Output ) argument
170 AesEcbDecrypt( IN VOID *AesContext, IN CONST UINT8 *Input, IN UINTN InputSize, OUT UINT8 *Output ) argument
230 AesCbcEncrypt( IN VOID *AesContext, IN CONST UINT8 *Input, IN UINTN InputSize, IN CONST UINT8 *Ivec, OUT UINT8 *Output ) argument
288 AesCbcDecrypt( IN VOID *AesContext, IN CONST UINT8 *Input, IN UINTN InputSize, IN CONST UINT8 *Ivec, OUT UINT8 *Output ) argument
[all...]
H A DCryptTdes.c116 This function performs TDES encryption on data buffer pointed by Input, of specified
124 If Input is NULL, then return FALSE.
129 @param[in] Input Pointer to the buffer containing the data to be encrypted.
130 @param[in] InputSize Size of the Input buffer in bytes.
141 IN CONST UINT8 *Input,
151 if (TdesContext == NULL || Input == NULL || (InputSize % TDES_BLOCK_SIZE) != 0 || Output == NULL) {
159 (const_DES_cblock *) Input,
166 Input += TDES_BLOCK_SIZE;
177 This function performs TDES decryption on data buffer pointed by Input, of specified
185 If Input i
139 TdesEcbEncrypt( IN VOID *TdesContext, IN CONST UINT8 *Input, IN UINTN InputSize, OUT UINT8 *Output ) argument
200 TdesEcbDecrypt( IN VOID *TdesContext, IN CONST UINT8 *Input, IN UINTN InputSize, OUT UINT8 *Output ) argument
264 TdesCbcEncrypt( IN VOID *TdesContext, IN CONST UINT8 *Input, IN UINTN InputSize, IN CONST UINT8 *Ivec, OUT UINT8 *Output ) argument
328 TdesCbcDecrypt( IN VOID *TdesContext, IN CONST UINT8 *Input, IN UINTN InputSize, IN CONST UINT8 *Ivec, OUT UINT8 *Output ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/TerminalDxe/
H A DTerminalConIn.c200 // Simple Text Input Ex protocol functions
519 UINT8 Input; local
574 Status = GetOneKeyFromSerial (TerminalDevice->SerialIo, &Input);
587 RawFiFoInsertOneKey (TerminalDevice, Input);
648 @param Input The key will be input.
658 UINT8 Input
672 TerminalDevice->RawFiFo->Data[Tail] = Input;
911 @param Input The key will be input.
921 UINT16 Input
937 TerminalDevice->UnicodeFiFo->Data[Tail] = Input;
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GnuGenBootSector/
H A DGnuGenBootSector.c97 BOOLEAN Input; member in struct:_PATH_INFO
167 if (PathInfo->Input) {
347 InputPathInfo.Input = TRUE;
349 Error (NULL, 0, 1003, "Invalid option value", "Input file name can't be NULL");
353 Error (NULL, 0, 1003, "Invalid option value", "Input file is missing");
362 OutputPathInfo.Input = FALSE;
417 Error (NULL, 0, 1001, "Missing options", "Input file is missing");
427 Error (NULL, 0, 1003, "Invalid option value", "Input file can't be found.");
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenBootSector/
H A DGenBootSector.c119 BOOL Input; member in struct:_PATH_INFO
355 if (!PathInfo->Input && (PathInfo->Type == PathUsb)) {
386 if (PathInfo->Input || PathInfo->Type != PathFile) {
604 if (!PathInfo->Input && (DriveInfo.DriveType->Type == DRIVE_FIXED)) {
623 if (PathInfo->Input) {
683 InputPathInfo.Input = TRUE;
685 Error (NULL, 0, 1003, "Invalid option value", "Input file name can't be NULL");
689 Error (NULL, 0, 1003, "Invalid option value", "Input file is missing");
698 OutputPathInfo.Input = FALSE;
753 Error (NULL, 0, 1001, "Missing options", "Input fil
[all...]
/vbox/src/VBox/Additions/WINNT/VBoxTray/
H A DVBoxDnD.cpp1357 INPUT Input[1] = { 0 }; local
1358 Input[0].type = INPUT_MOUSE;
1359 Input[0].mi.dwFlags = MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE
1361 Input[0].mi.dx = x * (65535 / iScreenX);
1362 Input[0].mi.dy = y * (65535 / iScreenY);
1366 Input, sizeof(INPUT)))
1404 INPUT Input[1] = { 0 }; local
1405 Input[0].type = INPUT_MOUSE;
1406 Input[0].mi.dwFlags = MOUSEEVENTF_LEFTUP;
1407 if (!s_pfnSendInput(1, Input, sizeo
[all...]
/vbox/include/iprt/cpp/
H A Dxml.h179 * The Input class represents an input stream.
185 class RT_DECL_CLASS Input : virtual public Stream class in namespace:xml
240 class RT_DECL_CLASS File : public Input, public Output
294 * See Input::read(). If this method is called in wrong file mode,
325 class RT_DECL_CLASS MemoryBuf : public Input
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IpSecDxe/
H A DIke.h205 UDP_IO *Input; member in struct:__anon12517
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxws-tools.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/istack/ ...
H A Djaxb-xjc.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ...

Completed in 66 milliseconds