HomeSort by relevance Sort by last modified time
    Searched refs:SHA_BLOCKSIZE (Results 1 - 11 of 11) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
shamodule.c 41 #define SHA_BLOCKSIZE 64
50 SHA_BYTE data[SHA_BLOCKSIZE]; /* SHA data buffer */
251 i = SHA_BLOCKSIZE - sha_info->local;
259 if (sha_info->local == SHA_BLOCKSIZE) {
266 while (count >= SHA_BLOCKSIZE) {
267 memcpy(sha_info->data, buffer, SHA_BLOCKSIZE);
268 buffer += SHA_BLOCKSIZE;
269 count -= SHA_BLOCKSIZE;
288 if (count > SHA_BLOCKSIZE - 8) {
290 SHA_BLOCKSIZE - count);
    [all...]
sha256module.c 42 #define SHA_BLOCKSIZE 64
51 SHA_BYTE data[SHA_BLOCKSIZE]; /* SHA data buffer */
279 i = SHA_BLOCKSIZE - sha_info->local;
287 if (sha_info->local == SHA_BLOCKSIZE) {
294 while (count >= SHA_BLOCKSIZE) {
295 memcpy(sha_info->data, buffer, SHA_BLOCKSIZE);
296 buffer += SHA_BLOCKSIZE;
297 count -= SHA_BLOCKSIZE;
316 if (count > SHA_BLOCKSIZE - 8) {
318 SHA_BLOCKSIZE - count);
    [all...]
sha512module.c 44 #define SHA_BLOCKSIZE 128
53 SHA_BYTE data[SHA_BLOCKSIZE]; /* SHA data buffer */
305 i = SHA_BLOCKSIZE - sha_info->local;
313 if (sha_info->local == SHA_BLOCKSIZE) {
320 while (count >= SHA_BLOCKSIZE) {
321 memcpy(sha_info->data, buffer, SHA_BLOCKSIZE);
322 buffer += SHA_BLOCKSIZE;
323 count -= SHA_BLOCKSIZE;
342 if (count > SHA_BLOCKSIZE - 16) {
344 SHA_BLOCKSIZE - count);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
shamodule.c 41 #define SHA_BLOCKSIZE 64
50 SHA_BYTE data[SHA_BLOCKSIZE]; /* SHA data buffer */
251 i = SHA_BLOCKSIZE - sha_info->local;
259 if (sha_info->local == SHA_BLOCKSIZE) {
266 while (count >= SHA_BLOCKSIZE) {
267 memcpy(sha_info->data, buffer, SHA_BLOCKSIZE);
268 buffer += SHA_BLOCKSIZE;
269 count -= SHA_BLOCKSIZE;
288 if (count > SHA_BLOCKSIZE - 8) {
290 SHA_BLOCKSIZE - count);
    [all...]
sha256module.c 42 #define SHA_BLOCKSIZE 64
51 SHA_BYTE data[SHA_BLOCKSIZE]; /* SHA data buffer */
279 i = SHA_BLOCKSIZE - sha_info->local;
287 if (sha_info->local == SHA_BLOCKSIZE) {
294 while (count >= SHA_BLOCKSIZE) {
295 memcpy(sha_info->data, buffer, SHA_BLOCKSIZE);
296 buffer += SHA_BLOCKSIZE;
297 count -= SHA_BLOCKSIZE;
316 if (count > SHA_BLOCKSIZE - 8) {
318 SHA_BLOCKSIZE - count);
    [all...]
sha512module.c 44 #define SHA_BLOCKSIZE 128
53 SHA_BYTE data[SHA_BLOCKSIZE]; /* SHA data buffer */
305 i = SHA_BLOCKSIZE - sha_info->local;
313 if (sha_info->local == SHA_BLOCKSIZE) {
320 while (count >= SHA_BLOCKSIZE) {
321 memcpy(sha_info->data, buffer, SHA_BLOCKSIZE);
322 buffer += SHA_BLOCKSIZE;
323 count -= SHA_BLOCKSIZE;
342 if (count > SHA_BLOCKSIZE - 16) {
344 SHA_BLOCKSIZE - count);
    [all...]
  /external/python/cpython2/Modules/
shamodule.c 41 #define SHA_BLOCKSIZE 64
50 SHA_BYTE data[SHA_BLOCKSIZE]; /* SHA data buffer */
251 i = SHA_BLOCKSIZE - sha_info->local;
259 if (sha_info->local == SHA_BLOCKSIZE) {
266 while (count >= SHA_BLOCKSIZE) {
267 memcpy(sha_info->data, buffer, SHA_BLOCKSIZE);
268 buffer += SHA_BLOCKSIZE;
269 count -= SHA_BLOCKSIZE;
288 if (count > SHA_BLOCKSIZE - 8) {
290 SHA_BLOCKSIZE - count)
    [all...]
sha256module.c 42 #define SHA_BLOCKSIZE 64
51 SHA_BYTE data[SHA_BLOCKSIZE]; /* SHA data buffer */
279 i = SHA_BLOCKSIZE - sha_info->local;
287 if (sha_info->local == SHA_BLOCKSIZE) {
294 while (count >= SHA_BLOCKSIZE) {
295 memcpy(sha_info->data, buffer, SHA_BLOCKSIZE);
296 buffer += SHA_BLOCKSIZE;
297 count -= SHA_BLOCKSIZE;
316 if (count > SHA_BLOCKSIZE - 8) {
318 SHA_BLOCKSIZE - count)
    [all...]
sha512module.c 44 #define SHA_BLOCKSIZE 128
53 SHA_BYTE data[SHA_BLOCKSIZE]; /* SHA data buffer */
305 i = SHA_BLOCKSIZE - sha_info->local;
313 if (sha_info->local == SHA_BLOCKSIZE) {
320 while (count >= SHA_BLOCKSIZE) {
321 memcpy(sha_info->data, buffer, SHA_BLOCKSIZE);
322 buffer += SHA_BLOCKSIZE;
323 count -= SHA_BLOCKSIZE;
342 if (count > SHA_BLOCKSIZE - 16) {
344 SHA_BLOCKSIZE - count)
    [all...]
  /external/python/cpython3/Modules/
sha256module.c 42 #define SHA_BLOCKSIZE 64
51 SHA_BYTE data[SHA_BLOCKSIZE]; /* SHA data buffer */
278 i = SHA_BLOCKSIZE - sha_info->local;
286 if (sha_info->local == SHA_BLOCKSIZE) {
293 while (count >= SHA_BLOCKSIZE) {
294 memcpy(sha_info->data, buffer, SHA_BLOCKSIZE);
295 buffer += SHA_BLOCKSIZE;
296 count -= SHA_BLOCKSIZE;
315 if (count > SHA_BLOCKSIZE - 8) {
317 SHA_BLOCKSIZE - count)
    [all...]
sha512module.c 43 #define SHA_BLOCKSIZE 128
52 SHA_BYTE data[SHA_BLOCKSIZE]; /* SHA data buffer */
303 i = SHA_BLOCKSIZE - sha_info->local;
311 if (sha_info->local == SHA_BLOCKSIZE) {
318 while (count >= SHA_BLOCKSIZE) {
319 memcpy(sha_info->data, buffer, SHA_BLOCKSIZE);
320 buffer += SHA_BLOCKSIZE;
321 count -= SHA_BLOCKSIZE;
340 if (count > SHA_BLOCKSIZE - 16) {
342 SHA_BLOCKSIZE - count)
    [all...]

Completed in 238 milliseconds