mailing list of musl libc
 help / color / mirror / code / Atom feed
26ae5b9003d2975ff60c9e929df7d9a5a22c6532 blob 993 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 
#ifndef _CRYPT_H
#define _CRYPT_H

#ifdef __cplusplus
extern "C" {
#endif

struct crypt_data {
	int initialized;
	char __buf[256];
};

char *crypt(const char *, const char *);
char *crypt_r(const char *, const char *, struct crypt_data *);

char *_crypt_gensalt_traditional_rn(const char *prefix, unsigned long count,
	const char *input, int size, char *output, int output_size);
char *_crypt_gensalt_extended_rn(const char *prefix, unsigned long count,
	const char *input, int size, char *output, int output_size);
char *_crypt_gensalt_md5_rn(const char *prefix, unsigned long count,
	const char *input, int size, char *output, int output_size);

int _crypt_output_magic(const char *setting, char *output, int size);
char *_crypt_blowfish_rn(const char *key, const char *setting,
	char *output, int size);
char *_crypt_gensalt_blowfish_rn(const char *prefix, unsigned long count,
	const char *input, int size, char *output, int output_size);

#ifdef __cplusplus
}
#endif

#endif
debug log:

solving 2d0e22a ...
found 2d0e22a in https://inbox.vuxu.org/musl/alpine.LNX.2.02.1207211701001.1301@localhost.localdomain/
found 07de216 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 07de21698c7e1918fdb520dc8e93db776ad8180e	include/crypt.h

applying [1/1] https://inbox.vuxu.org/musl/alpine.LNX.2.02.1207211701001.1301@localhost.localdomain/
diff --git a/include/crypt.h b/include/crypt.h\r
index 07de216..2d0e22a 100644\r

Checking patch include/crypt.h...
Applied patch include/crypt.h cleanly.

index at:
100644 26ae5b9003d2975ff60c9e929df7d9a5a22c6532	include/crypt.h

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).