mirror of
https://github.com/wader/fq.git
synced 2024-11-26 21:55:57 +03:00
cae288e6be
json, yaml, toml, xml, html, csv are now normal formats and most of them also particiate in probing (not html and csv). Also fixes a bunch of bugs in to/fromxml, to/fromjq etc.
9 lines
368 B
Plaintext
9 lines
368 B
Plaintext
def tomd4: _tohash({name: "md4"});
|
|
def tomd5: _tohash({name: "md5"});
|
|
def tosha1: _tohash({name: "sha1"});
|
|
def tosha256: _tohash({name: "sha256"});
|
|
def tosha512: _tohash({name: "sha512"});
|
|
def tosha3_224: _tohash({name: "sha3_224"});
|
|
def tosha3_256: _tohash({name: "sha3_256"});
|
|
def tosha3_384: _tohash({name: "sha3_384"});
|
|
def tosha3_512: _tohash({name: "sha3_512"}); |