ObjFW  Diff

Differences From Artifact [3deba01f01]:

To Artifact [3aa1c94d52]:


490
491
492
493
494
495
496
497

498
499
500
501

502
503
504
505
506
507
508
509
490
491
492
493
494
495
496

497


498

499

500
501
502
503
504
505
506







-
+
-
-

-
+
-







    uint16_t *size)
{
	return glue_of_zip_archive_entry_extra_field_find(
	    extraField, tag, size);
}

void
of_pbkdf2(OFHMAC *HMAC, size_t iterations, const unsigned char *salt,
of_pbkdf2(of_pbkdf2_parameters_t param)
    size_t saltLength, const char *password, size_t passwordLength,
    unsigned char *key, size_t keyLength, bool allowsSwappableMemory)
{
	glue_of_pbkdf2(HMAC, iterations, salt, saltLength,
	glue_of_pbkdf2(&param);
	    password, passwordLength, key, keyLength, allowsSwappableMemory);
}

void
of_salsa20_8_core(uint32_t *buffer)
{
	glue_of_salsa20_8_core(buffer);
}
518
519
520
521
522
523
524
525

526
527
528
529
530

531
532
533
534
535
536
537
538
515
516
517
518
519
520
521

522



523

524

525
526
527
528
529
530
531







-
+
-
-
-

-
+
-







of_scrypt_romix(uint32_t *buffer, size_t blockSize, size_t costFactor,
    uint32_t *tmp)
{
	glue_of_scrypt_romix(buffer, blockSize, costFactor, tmp);
}

void
of_scrypt(size_t blockSize, size_t costFactor, size_t parallelization,
of_scrypt(of_scrypt_parameters_t param)
    const unsigned char *salt, size_t saltLength, const char *password,
    size_t passwordLength, unsigned char *key, size_t keyLength,
    bool allowsSwappableMemory)
{
	glue_of_scrypt(blockSize, costFactor, parallelization, salt, saltLength,
	glue_of_scrypt(&param);
	    password, passwordLength, key, keyLength, allowsSwappableMemory);
}

const char *
of_strptime(const char *buf, const char *fmt, struct tm *tm, int16_t *tz)
{
	return glue_of_strptime(buf, fmt, tm, tz);
}