Commit graph

40 commits

Author SHA1 Message Date
Sebastian Wilzbach
63712f491c Remove redundant access specifier from Phobos 2021-10-27 10:04:23 +03:00
Nathan Sashihara
ffac90a201 Use core.bitop.rol instead of defining own rotateLeft 2021-03-13 03:34:00 +01:00
Iain Buclaw
fd5facfe04 posix.mak: Enforce whitespace before opening parenthesis for version conditions 2018-09-22 16:57:24 +02:00
Sebastian Wilzbach
c324714fde Remove a few cases of underscore escaping 2018-06-04 13:05:01 +02:00
Sebastian Wilzbach
42894784dd Markdownify Phobos
$(D word) -> `word`
2018-04-02 22:32:47 +02:00
Walter Bright
f4f071cb8e fix Issue 18397 - Poor implementation of std.conf.hexString results in unintended bloat 2018-02-09 01:18:15 -08:00
Sebastian Wilzbach
ec3f5e017c Replace deprecated hexstrings with std.conv.hexString
Basically `s/x"/hexString!"/`
2018-01-23 22:37:10 +01:00
Sebastian Wilzbach
2e2bab3b74 std.digest link cleanup
- Convert references to MREFs
- Add source link to std.digest.murmurhash
- Add assert to the examples in std.digest.murmurhash
2017-07-21 03:19:29 +02:00
Sebastian Wilzbach
5774d017eb Fix issue 16191 - std/digest/digest.d should be renamed to package.d 2017-07-10 05:10:53 +02:00
Sebastian Wilzbach
a36cec8686 DScanner: automatially set all unattributed unittests to @safe or @system 2017-02-22 05:42:04 +01:00
Sebastian Wilzbach
805c720595 Unify Phobos by ensuring there's always a space after cast(...)
Command:

sed -E 's/([^"])cast\(([^)]*?)\)([[:alnum:]])/\1cast(\2) \3/g' -i **/*.d
2017-02-21 16:40:20 +01:00
Sebastian Wilzbach
87dec58a41 DStyle: Constraints on declarations should have the same indentation level 2017-02-17 07:36:23 +01:00
Sebastian Wilzbach
ec47ac4224 Remove the WEB macro in favor of HTTP
replacement: sed 's/\$(WEB/\$(HTTP/g' -i **/*.d
2016-06-16 00:14:51 +02:00
anonymous
d648f9320e XREF_PACK -> REF (sed)
Done by:

from='\$\(XREF_PACK\s+([^(),]*),\s*([^(),]*),\s*([^(),]*)\)'
to='$(REF \3, std,\1,\2)'
(find . -type f -name "*.d" -print0; \
    find . -type f -name "*.dd" -print0) | \
xargs -0 sed -i -r "s/$from/$to/g"
2016-05-27 21:32:46 +02:00
Sebastian Wilzbach
18b8abf60a remove the deprecated wiki macros 2016-05-27 05:52:23 +02:00
Sebastian Wilzbach
5a8988c149 style fix: add space after for operator 2016-04-27 02:04:02 +03:00
Sebastian Wilzbach
3d67cd228c style fix: space between operators 2016-04-26 22:26:20 +03:00
Kai Nacke
508987aca4 Linux/PPC: Really fix the import for md.d/ripemd.d.
The current import for version(BigEndian) is still wrong.
This finally fixes the import.
2016-03-12 20:19:33 +01:00
Kai Nacke
7c065e1c50 Fix big endian version of std.digest.md and std.digest.ripemd.
An import is missing.
2016-03-04 23:25:49 +01:00
Benjamin L. Merritt
5f08c058ab Changed "Examples:" in Ddoc to "Example:" 2015-12-17 18:32:41 -08:00
David Nadlinger
41d2027c22 Merge pull request #3233 from schuetzm/hmac
Add std.digest.hmac
2015-06-20 20:29:30 +02:00
anonymous
b28962635f fix package XREFs
Also add escaping underscores in some places, and rewrap to 80 columns
where touching anyway.
2015-06-15 22:30:41 +02:00
Marc Schütz
57ecc812d7 Add std.digest.hmac 2015-06-12 20:37:47 +02:00
Andrei Alexandrescu
c0aad5b580 Fix debug build 2015-02-01 12:51:33 -08:00
anonymous
9309f2b142 [DDoc] add HTML class "quickindex" to manually maintained jump link tables 2015-01-26 11:19:05 +01:00
Andrei Alexandrescu
cb044b02aa Verbatim-related changes in phobos 2015-01-12 00:05:36 -08:00
Andrei Alexandrescu
a13cee766d Ensure each module has a description at the top. 2015-01-11 14:14:29 -08:00
Ilya Yaroshenko
cd76ad7ac3 std.digest.*: clean imports 2014-11-10 15:00:44 +03:00
Geod24
0fb95b8c27 Usage of WEB macro for License everywhere 2014-10-15 11:30:42 +02:00
sinkuu
c3dfee2434 Add @nogc to std.digest.ripemd 2014-08-22 17:33:01 +09:00
k-hara
b391b2ec9f Convert to new alias syntax 2014-02-11 15:27:05 +09:00
Daniel Murphy
a656f26e9e Remove use of automatic adjacent string literal concatenation from phobos 2014-01-20 03:42:21 +11:00
Geod24
8dc683674e Turned Examples section in std.digest.* into documented unittest 2013-12-17 13:57:44 +01:00
Hackerpilot
13a6e6ac5c Converted C-style array declarations to D-style 2013-07-03 00:06:32 +00:00
kai
f41c576e09 Cleanup digest source.
Removes an unnecessary cast and variable initialization.
2013-04-13 13:22:09 +02:00
kai
3bbe15507c Fix big endian version of MD5 and RipeMD160.
Obviously the code has never been run on a big endian architecuture.
With these changes the unit tests passes on Linux/PPC64.
2013-04-06 13:40:44 +02:00
kai
fa96ff8f1f Fix documentation of std.digest.ripemd
Fixes the broken link to the source file and beautifies the reference list.
2013-04-05 13:10:51 +02:00
kai
fa98c6cff5 Fix big endian version of ripemd.
The upper bound of the array index is obviously wrong.
2013-03-31 01:10:57 +01:00
k-hara
28dedee456 Issue 7444 - Require [] for array copies too 2012-11-20 17:55:21 +09:00
kai
71f7a9a903 Initial implementation of RIPEMD160. 2012-10-20 21:34:33 +02:00