Overview
Comment: | Adjust Amiga library to new of_{pbkdf2,scrypt} API |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | amiga-library |
Files: | files | file ages | folders |
SHA3-256: |
f8f3bc15455082b79cc3e59aabbfd08c |
User & Date: | js on 2020-06-21 22:26:15 |
Other Links: | branch diff | manifest | tags |
Context
2020-06-21
| ||
22:46 | Add missing of_log to linklib check-in: 08606a8804 user: js tags: amiga-library | |
22:26 | Adjust Amiga library to new of_{pbkdf2,scrypt} API check-in: f8f3bc1545 user: js tags: amiga-library | |
22:15 | Merge trunk into branch "amiga-library" check-in: 39641794dd user: js tags: amiga-library | |
Changes
Modified src/amiga-glue.m from [93e24e60c7] to [77817a66d6].
︙ | |||
225 226 227 228 229 230 231 | 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | - + - - - - - - - - + - - - - - + - | M68K_ARG(uint16_t, tag, d0) M68K_ARG(uint16_t *, size, a1) return of_zip_archive_entry_extra_field_find(extraField, tag, size); } void __saveds |
︙ | |||
276 277 278 279 280 281 282 | 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | - + - - - - - - - - - + - - - - - + - | M68K_ARG(size_t, costFactor, d1) M68K_ARG(uint32_t *, tmp, a1) of_scrypt_romix(buffer, blockSize, costFactor, tmp); } void __saveds |
︙ |
Modified src/amigaos3.sfd from [f505beb2f6] to [8f1f5f4c6b].
︙ | |||
21 22 23 24 25 26 27 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | - + - + | size_t glue_of_string_utf8_encode(of_unichar_t c, char *UTF8)(d0,a0) ssize_t glue_of_string_utf8_decode(const char *UTF8, size_t len, of_unichar_t *c)(a0,d0,a1) size_t glue_of_string_utf16_length(const of_char16_t *string)(a0) size_t glue_of_string_utf32_length(const of_char32_t *string)(a0) OFString *_Nonnull glue_of_zip_archive_entry_version_to_string(uint16_t version)(d0) OFString *_Nonnull glue_of_zip_archive_entry_compression_method_to_string(uint16_t compressionMethod)(d0) size_t glue_of_zip_archive_entry_extra_field_find(OFData *extraField, uint16_t tag, uint16_t *size)(a0,d0,a1) |
︙ |
Modified src/linklib/linklib.m from [3deba01f01] to [3aa1c94d52].
︙ | |||
490 491 492 493 494 495 496 | 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 |
︙ | |||
518 519 520 521 522 523 524 | 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 |
︙ |