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 | 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 | | < < < < < < < | < < < < | < | 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 glue_of_pbkdf2 PPC_PARAMS(const of_pbkdf2_parameters_t *param) { M68K_ARG(const of_pbkdf2_parameters_t *, param, a0) of_pbkdf2(*param); } void __saveds glue_of_salsa20_8_core PPC_PARAMS(uint32_t *buffer) { M68K_ARG(uint32_t *, buffer, a0) |
︙ | ︙ | |||
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 | | < < < < < < < < | < < < < | < | 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 glue_of_scrypt PPC_PARAMS(const of_scrypt_parameters_t *param) { M68K_ARG(const of_scrypt_parameters_t *, param, a0) of_scrypt(*param); } const char *__saveds glue_of_strptime PPC_PARAMS(const char *buf, const char *fmt, struct tm *tm, int16_t *tz) { M68K_ARG(const char *, buf, a0) |
︙ | ︙ |
Modified src/amigaos3.sfd from [f505beb2f6] to [8f1f5f4c6b].
︙ | ︙ | |||
21 22 23 24 25 26 27 | 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) | | | | 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) void glue_of_pbkdf2(const of_pbkdf2_parameters_t *param)(a0) void glue_of_salsa20_8_core(uint32_t *_Nonnull buffer)(a0) void glue_of_scrypt_block_mix(uint32_t *_Nonnull output, const uint32_t *_Nonnull input, size_t blockSize)(a0,a1,d0) void glue_of_scrypt_romix(uint32_t *buffer, size_t blockSize, size_t costFactor, uint32_t *tmp)(a0,d0,d1,a1) void glue_of_scrypt(const of_scrypt_parameters_t *param)(a0) const char *_Nullable glue_of_strptime(const char *buf, const char *fmt, struct tm *tm, int16_t *_Nullable tz)(a0,a1,a2,a3) void glue_of_socket_address_parse_ip(of_socket_address_t *_Nonnull address, OFString *IP, uint16_t port)(a0,a1,d0) void glue_of_socket_address_parse_ipv4(of_socket_address_t *_Nonnull address, OFString *IP, uint16_t port)(a0,a1,d0) void glue_of_socket_address_parse_ipv6(of_socket_address_t *_Nonnull address, OFString *IP, uint16_t port)(a0,a1,d0) void glue_of_socket_address_ipx(of_socket_address_t *_Nonnull address, const unsigned char *_Nonnull node, uint32_t network, uint16_t port)(a0,a1,d0,d1) bool glue_of_socket_address_equal(const of_socket_address_t *_Nonnull address1, const of_socket_address_t *_Nonnull address2)(a0,a1) uint32_t glue_of_socket_address_hash(const of_socket_address_t *_Nonnull address)(a0) |
︙ | ︙ |
Modified src/linklib/linklib.m from [3deba01f01] to [3aa1c94d52].
︙ | ︙ | |||
490 491 492 493 494 495 496 | uint16_t *size) { return glue_of_zip_archive_entry_extra_field_find( extraField, tag, size); } void | | < < | < | 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(of_pbkdf2_parameters_t param) { glue_of_pbkdf2(¶m); } void of_salsa20_8_core(uint32_t *buffer) { glue_of_salsa20_8_core(buffer); } |
︙ | ︙ | |||
518 519 520 521 522 523 524 | of_scrypt_romix(uint32_t *buffer, size_t blockSize, size_t costFactor, uint32_t *tmp) { glue_of_scrypt_romix(buffer, blockSize, costFactor, tmp); } void | | < < < | < | 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(of_scrypt_parameters_t param) { glue_of_scrypt(¶m); } const char * of_strptime(const char *buf, const char *fmt, struct tm *tm, int16_t *tz) { return glue_of_strptime(buf, fmt, tm, tz); } |
︙ | ︙ |