xcrypt 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Rakefile +106 -0
- data/ext/libxcrypt/AUTHORS +38 -0
- data/ext/libxcrypt/COPYING.LIB +502 -0
- data/ext/libxcrypt/ChangeLog +239 -0
- data/ext/libxcrypt/INSTALL +380 -0
- data/ext/libxcrypt/LICENSING +152 -0
- data/ext/libxcrypt/Makefile.am +704 -0
- data/ext/libxcrypt/Makefile.in +4110 -0
- data/ext/libxcrypt/NEWS +630 -0
- data/ext/libxcrypt/README +1 -0
- data/ext/libxcrypt/README.md +179 -0
- data/ext/libxcrypt/THANKS +13 -0
- data/ext/libxcrypt/TODO +1 -0
- data/ext/libxcrypt/TODO.md +100 -0
- data/ext/libxcrypt/aclocal.m4 +2617 -0
- data/ext/libxcrypt/autogen.sh +33 -0
- data/ext/libxcrypt/autom4te.cache/output.0 +19884 -0
- data/ext/libxcrypt/autom4te.cache/output.1 +19884 -0
- data/ext/libxcrypt/autom4te.cache/output.2 +19884 -0
- data/ext/libxcrypt/autom4te.cache/output.3 +19885 -0
- data/ext/libxcrypt/autom4te.cache/requests +714 -0
- data/ext/libxcrypt/autom4te.cache/traces.0 +4088 -0
- data/ext/libxcrypt/autom4te.cache/traces.1 +1060 -0
- data/ext/libxcrypt/autom4te.cache/traces.2 +4088 -0
- data/ext/libxcrypt/autom4te.cache/traces.3 +1060 -0
- data/ext/libxcrypt/build-aux/ci/ci-log-dependency-versions +79 -0
- data/ext/libxcrypt/build-aux/ci/ci-log-logfiles +22 -0
- data/ext/libxcrypt/build-aux/ci/clang-gcov-wrapper +2 -0
- data/ext/libxcrypt/build-aux/ci/configure-wrapper +10 -0
- data/ext/libxcrypt/build-aux/ci/summarize-coverage +24 -0
- data/ext/libxcrypt/build-aux/m4/ax_append_compile_flags.m4 +46 -0
- data/ext/libxcrypt/build-aux/m4/ax_append_flag.m4 +50 -0
- data/ext/libxcrypt/build-aux/m4/ax_check_compile_flag.m4 +53 -0
- data/ext/libxcrypt/build-aux/m4/ax_check_vscript.m4 +142 -0
- data/ext/libxcrypt/build-aux/m4/ax_gcc_func_attribute.m4 +246 -0
- data/ext/libxcrypt/build-aux/m4/ax_require_defined.m4 +37 -0
- data/ext/libxcrypt/build-aux/m4/ax_valgrind_check.m4 +239 -0
- data/ext/libxcrypt/build-aux/m4/libtool.m4 +8488 -0
- data/ext/libxcrypt/build-aux/m4/ltoptions.m4 +467 -0
- data/ext/libxcrypt/build-aux/m4/ltsugar.m4 +124 -0
- data/ext/libxcrypt/build-aux/m4/ltversion.m4 +24 -0
- data/ext/libxcrypt/build-aux/m4/lt~obsolete.m4 +99 -0
- data/ext/libxcrypt/build-aux/m4/pkg_compat.m4 +88 -0
- data/ext/libxcrypt/build-aux/m4/zw_alignment.m4 +90 -0
- data/ext/libxcrypt/build-aux/m4/zw_automodern.m4 +307 -0
- data/ext/libxcrypt/build-aux/m4/zw_detect_asan.m4 +24 -0
- data/ext/libxcrypt/build-aux/m4/zw_endianness.m4 +152 -0
- data/ext/libxcrypt/build-aux/m4/zw_ld_wrap.m4 +47 -0
- data/ext/libxcrypt/build-aux/m4/zw_prog_perl.m4 +40 -0
- data/ext/libxcrypt/build-aux/m4/zw_simple_warnings.m4 +150 -0
- data/ext/libxcrypt/build-aux/m4/zw_static_assert.m4 +68 -0
- data/ext/libxcrypt/build-aux/m4-autogen/compile +364 -0
- data/ext/libxcrypt/build-aux/m4-autogen/config.guess +1815 -0
- data/ext/libxcrypt/build-aux/m4-autogen/config.sub +2354 -0
- data/ext/libxcrypt/build-aux/m4-autogen/depcomp +792 -0
- data/ext/libxcrypt/build-aux/m4-autogen/install-sh +541 -0
- data/ext/libxcrypt/build-aux/m4-autogen/ltmain.sh +11524 -0
- data/ext/libxcrypt/build-aux/m4-autogen/missing +236 -0
- data/ext/libxcrypt/build-aux/m4-autogen/test-driver +160 -0
- data/ext/libxcrypt/build-aux/scripts/BuildCommon.pm +712 -0
- data/ext/libxcrypt/build-aux/scripts/check-perlcritic-config +76 -0
- data/ext/libxcrypt/build-aux/scripts/compute-symver-floor +116 -0
- data/ext/libxcrypt/build-aux/scripts/expand-selected-hashes +80 -0
- data/ext/libxcrypt/build-aux/scripts/gen-crypt-h +131 -0
- data/ext/libxcrypt/build-aux/scripts/gen-crypt-hashes-h +141 -0
- data/ext/libxcrypt/build-aux/scripts/gen-crypt-symbol-vers-h +150 -0
- data/ext/libxcrypt/build-aux/scripts/gen-libcrypt-map +67 -0
- data/ext/libxcrypt/build-aux/scripts/move-if-change +84 -0
- data/ext/libxcrypt/build-aux/scripts/skip-if-exec-format-error +78 -0
- data/ext/libxcrypt/codecov.yml +4 -0
- data/ext/libxcrypt/config.h.in +303 -0
- data/ext/libxcrypt/configure +19885 -0
- data/ext/libxcrypt/configure.ac +549 -0
- data/ext/libxcrypt/doc/crypt.3 +512 -0
- data/ext/libxcrypt/doc/crypt.5 +343 -0
- data/ext/libxcrypt/doc/crypt_checksalt.3 +106 -0
- data/ext/libxcrypt/doc/crypt_gensalt.3 +285 -0
- data/ext/libxcrypt/doc/crypt_gensalt_ra.3 +1 -0
- data/ext/libxcrypt/doc/crypt_gensalt_rn.3 +1 -0
- data/ext/libxcrypt/doc/crypt_preferred_method.3 +68 -0
- data/ext/libxcrypt/doc/crypt_r.3 +1 -0
- data/ext/libxcrypt/doc/crypt_ra.3 +1 -0
- data/ext/libxcrypt/doc/crypt_rn.3 +1 -0
- data/ext/libxcrypt/lib/alg-des-tables.c +3858 -0
- data/ext/libxcrypt/lib/alg-des.c +269 -0
- data/ext/libxcrypt/lib/alg-des.h +74 -0
- data/ext/libxcrypt/lib/alg-gost3411-2012-const.h +313 -0
- data/ext/libxcrypt/lib/alg-gost3411-2012-core.c +238 -0
- data/ext/libxcrypt/lib/alg-gost3411-2012-core.h +51 -0
- data/ext/libxcrypt/lib/alg-gost3411-2012-hmac.c +78 -0
- data/ext/libxcrypt/lib/alg-gost3411-2012-hmac.h +46 -0
- data/ext/libxcrypt/lib/alg-gost3411-2012-precalc.h +1426 -0
- data/ext/libxcrypt/lib/alg-gost3411-2012-ref.h +67 -0
- data/ext/libxcrypt/lib/alg-hmac-sha1.c +140 -0
- data/ext/libxcrypt/lib/alg-hmac-sha1.h +35 -0
- data/ext/libxcrypt/lib/alg-md4.c +270 -0
- data/ext/libxcrypt/lib/alg-md4.h +43 -0
- data/ext/libxcrypt/lib/alg-md5.c +291 -0
- data/ext/libxcrypt/lib/alg-md5.h +43 -0
- data/ext/libxcrypt/lib/alg-sha1.c +288 -0
- data/ext/libxcrypt/lib/alg-sha1.h +34 -0
- data/ext/libxcrypt/lib/alg-sha256.c +630 -0
- data/ext/libxcrypt/lib/alg-sha256.h +123 -0
- data/ext/libxcrypt/lib/alg-sha512.c +311 -0
- data/ext/libxcrypt/lib/alg-sha512.h +81 -0
- data/ext/libxcrypt/lib/alg-sm3-hmac.c +113 -0
- data/ext/libxcrypt/lib/alg-sm3-hmac.h +42 -0
- data/ext/libxcrypt/lib/alg-sm3.c +449 -0
- data/ext/libxcrypt/lib/alg-sm3.h +63 -0
- data/ext/libxcrypt/lib/alg-yescrypt-common.c +713 -0
- data/ext/libxcrypt/lib/alg-yescrypt-opt.c +1568 -0
- data/ext/libxcrypt/lib/alg-yescrypt-platform.c +106 -0
- data/ext/libxcrypt/lib/alg-yescrypt.h +360 -0
- data/ext/libxcrypt/lib/byteorder.h +164 -0
- data/ext/libxcrypt/lib/crypt-bcrypt.c +1061 -0
- data/ext/libxcrypt/lib/crypt-des-obsolete.c +215 -0
- data/ext/libxcrypt/lib/crypt-des.c +491 -0
- data/ext/libxcrypt/lib/crypt-gensalt-static.c +40 -0
- data/ext/libxcrypt/lib/crypt-gost-yescrypt.c +182 -0
- data/ext/libxcrypt/lib/crypt-md5.c +232 -0
- data/ext/libxcrypt/lib/crypt-nthash.c +134 -0
- data/ext/libxcrypt/lib/crypt-obsolete.h +40 -0
- data/ext/libxcrypt/lib/crypt-pbkdf1-sha1.c +260 -0
- data/ext/libxcrypt/lib/crypt-port.h +514 -0
- data/ext/libxcrypt/lib/crypt-scrypt.c +247 -0
- data/ext/libxcrypt/lib/crypt-sha256.c +308 -0
- data/ext/libxcrypt/lib/crypt-sha512.c +323 -0
- data/ext/libxcrypt/lib/crypt-sm3-yescrypt.c +189 -0
- data/ext/libxcrypt/lib/crypt-sm3.c +308 -0
- data/ext/libxcrypt/lib/crypt-static.c +44 -0
- data/ext/libxcrypt/lib/crypt-sunmd5.c +314 -0
- data/ext/libxcrypt/lib/crypt-yescrypt.c +177 -0
- data/ext/libxcrypt/lib/crypt.c +421 -0
- data/ext/libxcrypt/lib/crypt.h.in +249 -0
- data/ext/libxcrypt/lib/gen-des-tables.c +363 -0
- data/ext/libxcrypt/lib/hashes.conf +59 -0
- data/ext/libxcrypt/lib/libcrypt.map.in +48 -0
- data/ext/libxcrypt/lib/libcrypt.minver +97 -0
- data/ext/libxcrypt/lib/libxcrypt.pc.in +15 -0
- data/ext/libxcrypt/lib/util-base64.c +26 -0
- data/ext/libxcrypt/lib/util-gensalt-sha.c +88 -0
- data/ext/libxcrypt/lib/util-get-random-bytes.c +154 -0
- data/ext/libxcrypt/lib/util-make-failure-token.c +48 -0
- data/ext/libxcrypt/lib/util-xbzero.c +43 -0
- data/ext/libxcrypt/lib/util-xstrcpy.c +42 -0
- data/ext/libxcrypt/lib/xcrypt.h.in +58 -0
- data/ext/libxcrypt/libxcrypt.spec.rpkg +481 -0
- data/ext/libxcrypt/rpkg.conf +2 -0
- data/ext/libxcrypt/rpkg.macros +86 -0
- data/ext/libxcrypt/test/TestCommon.pm +326 -0
- data/ext/libxcrypt/test/alg-des.c +80 -0
- data/ext/libxcrypt/test/alg-gost3411-2012-hmac.c +90 -0
- data/ext/libxcrypt/test/alg-gost3411-2012.c +191 -0
- data/ext/libxcrypt/test/alg-hmac-sha1.c +187 -0
- data/ext/libxcrypt/test/alg-md4.c +111 -0
- data/ext/libxcrypt/test/alg-md5.c +134 -0
- data/ext/libxcrypt/test/alg-pbkdf-hmac-sha256.c +269 -0
- data/ext/libxcrypt/test/alg-sha1.c +111 -0
- data/ext/libxcrypt/test/alg-sha256.c +141 -0
- data/ext/libxcrypt/test/alg-sha512.c +170 -0
- data/ext/libxcrypt/test/alg-sm3-hmac.c +149 -0
- data/ext/libxcrypt/test/alg-sm3.c +168 -0
- data/ext/libxcrypt/test/alg-yescrypt.c +466 -0
- data/ext/libxcrypt/test/badsalt.c +726 -0
- data/ext/libxcrypt/test/badsetting.c +350 -0
- data/ext/libxcrypt/test/byteorder.c +254 -0
- data/ext/libxcrypt/test/checksalt.c +265 -0
- data/ext/libxcrypt/test/compile-strong-alias.c +43 -0
- data/ext/libxcrypt/test/crypt-badargs.c +392 -0
- data/ext/libxcrypt/test/crypt-gost-yescrypt.c +149 -0
- data/ext/libxcrypt/test/crypt-nested-call.c +180 -0
- data/ext/libxcrypt/test/crypt-sm3-yescrypt.c +149 -0
- data/ext/libxcrypt/test/crypt-too-long-phrase.c +157 -0
- data/ext/libxcrypt/test/des-cases.h +196 -0
- data/ext/libxcrypt/test/des-obsolete.c +206 -0
- data/ext/libxcrypt/test/des-obsolete_r.c +207 -0
- data/ext/libxcrypt/test/explicit-bzero.c +334 -0
- data/ext/libxcrypt/test/gensalt-bcrypt_x.c +54 -0
- data/ext/libxcrypt/test/gensalt-extradata.c +246 -0
- data/ext/libxcrypt/test/gensalt-nested-call.c +126 -0
- data/ext/libxcrypt/test/gensalt-nthash.c +65 -0
- data/ext/libxcrypt/test/gensalt.c +599 -0
- data/ext/libxcrypt/test/getrandom-fallbacks.c +295 -0
- data/ext/libxcrypt/test/getrandom-interface.c +211 -0
- data/ext/libxcrypt/test/ka-table-gen.py +945 -0
- data/ext/libxcrypt/test/ka-table.inc +5849 -0
- data/ext/libxcrypt/test/ka-tester.c +240 -0
- data/ext/libxcrypt/test/preferred-method.c +133 -0
- data/ext/libxcrypt/test/short-outbuf.c +119 -0
- data/ext/libxcrypt/test/special-char-salt.c +1160 -0
- data/ext/libxcrypt/test/symbols-compat.pl +137 -0
- data/ext/libxcrypt/test/symbols-renames.pl +107 -0
- data/ext/libxcrypt/test/symbols-static.pl +87 -0
- data/ext/xcrypt/xcrypt.c +9 -0
- data/lib/xcrypt/ffi.rb +76 -0
- data/lib/xcrypt/version.rb +5 -0
- data/lib/xcrypt.rb +89 -0
- metadata +267 -0
metadata
ADDED
|
@@ -0,0 +1,267 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: xcrypt
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Konstantin Haase
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: ffi
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '1.0'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '1.0'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: ffi-compiler
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '1.0'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '1.0'
|
|
40
|
+
description: |
|
|
41
|
+
Ruby FFI bindings for libxcrypt, a modern library for one-way hashing of
|
|
42
|
+
passwords. Supports yescrypt, bcrypt, SHA-512, SHA-256, and other
|
|
43
|
+
algorithms provided by the bundled libxcrypt source (ext/libxcrypt).
|
|
44
|
+
executables: []
|
|
45
|
+
extensions:
|
|
46
|
+
- Rakefile
|
|
47
|
+
extra_rdoc_files: []
|
|
48
|
+
files:
|
|
49
|
+
- Rakefile
|
|
50
|
+
- ext/libxcrypt/AUTHORS
|
|
51
|
+
- ext/libxcrypt/COPYING.LIB
|
|
52
|
+
- ext/libxcrypt/ChangeLog
|
|
53
|
+
- ext/libxcrypt/INSTALL
|
|
54
|
+
- ext/libxcrypt/LICENSING
|
|
55
|
+
- ext/libxcrypt/Makefile.am
|
|
56
|
+
- ext/libxcrypt/Makefile.in
|
|
57
|
+
- ext/libxcrypt/NEWS
|
|
58
|
+
- ext/libxcrypt/README
|
|
59
|
+
- ext/libxcrypt/README.md
|
|
60
|
+
- ext/libxcrypt/THANKS
|
|
61
|
+
- ext/libxcrypt/TODO
|
|
62
|
+
- ext/libxcrypt/TODO.md
|
|
63
|
+
- ext/libxcrypt/aclocal.m4
|
|
64
|
+
- ext/libxcrypt/autogen.sh
|
|
65
|
+
- ext/libxcrypt/autom4te.cache/output.0
|
|
66
|
+
- ext/libxcrypt/autom4te.cache/output.1
|
|
67
|
+
- ext/libxcrypt/autom4te.cache/output.2
|
|
68
|
+
- ext/libxcrypt/autom4te.cache/output.3
|
|
69
|
+
- ext/libxcrypt/autom4te.cache/requests
|
|
70
|
+
- ext/libxcrypt/autom4te.cache/traces.0
|
|
71
|
+
- ext/libxcrypt/autom4te.cache/traces.1
|
|
72
|
+
- ext/libxcrypt/autom4te.cache/traces.2
|
|
73
|
+
- ext/libxcrypt/autom4te.cache/traces.3
|
|
74
|
+
- ext/libxcrypt/build-aux/ci/ci-log-dependency-versions
|
|
75
|
+
- ext/libxcrypt/build-aux/ci/ci-log-logfiles
|
|
76
|
+
- ext/libxcrypt/build-aux/ci/clang-gcov-wrapper
|
|
77
|
+
- ext/libxcrypt/build-aux/ci/configure-wrapper
|
|
78
|
+
- ext/libxcrypt/build-aux/ci/summarize-coverage
|
|
79
|
+
- ext/libxcrypt/build-aux/m4-autogen/compile
|
|
80
|
+
- ext/libxcrypt/build-aux/m4-autogen/config.guess
|
|
81
|
+
- ext/libxcrypt/build-aux/m4-autogen/config.sub
|
|
82
|
+
- ext/libxcrypt/build-aux/m4-autogen/depcomp
|
|
83
|
+
- ext/libxcrypt/build-aux/m4-autogen/install-sh
|
|
84
|
+
- ext/libxcrypt/build-aux/m4-autogen/ltmain.sh
|
|
85
|
+
- ext/libxcrypt/build-aux/m4-autogen/missing
|
|
86
|
+
- ext/libxcrypt/build-aux/m4-autogen/test-driver
|
|
87
|
+
- ext/libxcrypt/build-aux/m4/ax_append_compile_flags.m4
|
|
88
|
+
- ext/libxcrypt/build-aux/m4/ax_append_flag.m4
|
|
89
|
+
- ext/libxcrypt/build-aux/m4/ax_check_compile_flag.m4
|
|
90
|
+
- ext/libxcrypt/build-aux/m4/ax_check_vscript.m4
|
|
91
|
+
- ext/libxcrypt/build-aux/m4/ax_gcc_func_attribute.m4
|
|
92
|
+
- ext/libxcrypt/build-aux/m4/ax_require_defined.m4
|
|
93
|
+
- ext/libxcrypt/build-aux/m4/ax_valgrind_check.m4
|
|
94
|
+
- ext/libxcrypt/build-aux/m4/libtool.m4
|
|
95
|
+
- ext/libxcrypt/build-aux/m4/ltoptions.m4
|
|
96
|
+
- ext/libxcrypt/build-aux/m4/ltsugar.m4
|
|
97
|
+
- ext/libxcrypt/build-aux/m4/ltversion.m4
|
|
98
|
+
- ext/libxcrypt/build-aux/m4/lt~obsolete.m4
|
|
99
|
+
- ext/libxcrypt/build-aux/m4/pkg_compat.m4
|
|
100
|
+
- ext/libxcrypt/build-aux/m4/zw_alignment.m4
|
|
101
|
+
- ext/libxcrypt/build-aux/m4/zw_automodern.m4
|
|
102
|
+
- ext/libxcrypt/build-aux/m4/zw_detect_asan.m4
|
|
103
|
+
- ext/libxcrypt/build-aux/m4/zw_endianness.m4
|
|
104
|
+
- ext/libxcrypt/build-aux/m4/zw_ld_wrap.m4
|
|
105
|
+
- ext/libxcrypt/build-aux/m4/zw_prog_perl.m4
|
|
106
|
+
- ext/libxcrypt/build-aux/m4/zw_simple_warnings.m4
|
|
107
|
+
- ext/libxcrypt/build-aux/m4/zw_static_assert.m4
|
|
108
|
+
- ext/libxcrypt/build-aux/scripts/BuildCommon.pm
|
|
109
|
+
- ext/libxcrypt/build-aux/scripts/check-perlcritic-config
|
|
110
|
+
- ext/libxcrypt/build-aux/scripts/compute-symver-floor
|
|
111
|
+
- ext/libxcrypt/build-aux/scripts/expand-selected-hashes
|
|
112
|
+
- ext/libxcrypt/build-aux/scripts/gen-crypt-h
|
|
113
|
+
- ext/libxcrypt/build-aux/scripts/gen-crypt-hashes-h
|
|
114
|
+
- ext/libxcrypt/build-aux/scripts/gen-crypt-symbol-vers-h
|
|
115
|
+
- ext/libxcrypt/build-aux/scripts/gen-libcrypt-map
|
|
116
|
+
- ext/libxcrypt/build-aux/scripts/move-if-change
|
|
117
|
+
- ext/libxcrypt/build-aux/scripts/skip-if-exec-format-error
|
|
118
|
+
- ext/libxcrypt/codecov.yml
|
|
119
|
+
- ext/libxcrypt/config.h.in
|
|
120
|
+
- ext/libxcrypt/configure
|
|
121
|
+
- ext/libxcrypt/configure.ac
|
|
122
|
+
- ext/libxcrypt/doc/crypt.3
|
|
123
|
+
- ext/libxcrypt/doc/crypt.5
|
|
124
|
+
- ext/libxcrypt/doc/crypt_checksalt.3
|
|
125
|
+
- ext/libxcrypt/doc/crypt_gensalt.3
|
|
126
|
+
- ext/libxcrypt/doc/crypt_gensalt_ra.3
|
|
127
|
+
- ext/libxcrypt/doc/crypt_gensalt_rn.3
|
|
128
|
+
- ext/libxcrypt/doc/crypt_preferred_method.3
|
|
129
|
+
- ext/libxcrypt/doc/crypt_r.3
|
|
130
|
+
- ext/libxcrypt/doc/crypt_ra.3
|
|
131
|
+
- ext/libxcrypt/doc/crypt_rn.3
|
|
132
|
+
- ext/libxcrypt/lib/alg-des-tables.c
|
|
133
|
+
- ext/libxcrypt/lib/alg-des.c
|
|
134
|
+
- ext/libxcrypt/lib/alg-des.h
|
|
135
|
+
- ext/libxcrypt/lib/alg-gost3411-2012-const.h
|
|
136
|
+
- ext/libxcrypt/lib/alg-gost3411-2012-core.c
|
|
137
|
+
- ext/libxcrypt/lib/alg-gost3411-2012-core.h
|
|
138
|
+
- ext/libxcrypt/lib/alg-gost3411-2012-hmac.c
|
|
139
|
+
- ext/libxcrypt/lib/alg-gost3411-2012-hmac.h
|
|
140
|
+
- ext/libxcrypt/lib/alg-gost3411-2012-precalc.h
|
|
141
|
+
- ext/libxcrypt/lib/alg-gost3411-2012-ref.h
|
|
142
|
+
- ext/libxcrypt/lib/alg-hmac-sha1.c
|
|
143
|
+
- ext/libxcrypt/lib/alg-hmac-sha1.h
|
|
144
|
+
- ext/libxcrypt/lib/alg-md4.c
|
|
145
|
+
- ext/libxcrypt/lib/alg-md4.h
|
|
146
|
+
- ext/libxcrypt/lib/alg-md5.c
|
|
147
|
+
- ext/libxcrypt/lib/alg-md5.h
|
|
148
|
+
- ext/libxcrypt/lib/alg-sha1.c
|
|
149
|
+
- ext/libxcrypt/lib/alg-sha1.h
|
|
150
|
+
- ext/libxcrypt/lib/alg-sha256.c
|
|
151
|
+
- ext/libxcrypt/lib/alg-sha256.h
|
|
152
|
+
- ext/libxcrypt/lib/alg-sha512.c
|
|
153
|
+
- ext/libxcrypt/lib/alg-sha512.h
|
|
154
|
+
- ext/libxcrypt/lib/alg-sm3-hmac.c
|
|
155
|
+
- ext/libxcrypt/lib/alg-sm3-hmac.h
|
|
156
|
+
- ext/libxcrypt/lib/alg-sm3.c
|
|
157
|
+
- ext/libxcrypt/lib/alg-sm3.h
|
|
158
|
+
- ext/libxcrypt/lib/alg-yescrypt-common.c
|
|
159
|
+
- ext/libxcrypt/lib/alg-yescrypt-opt.c
|
|
160
|
+
- ext/libxcrypt/lib/alg-yescrypt-platform.c
|
|
161
|
+
- ext/libxcrypt/lib/alg-yescrypt.h
|
|
162
|
+
- ext/libxcrypt/lib/byteorder.h
|
|
163
|
+
- ext/libxcrypt/lib/crypt-bcrypt.c
|
|
164
|
+
- ext/libxcrypt/lib/crypt-des-obsolete.c
|
|
165
|
+
- ext/libxcrypt/lib/crypt-des.c
|
|
166
|
+
- ext/libxcrypt/lib/crypt-gensalt-static.c
|
|
167
|
+
- ext/libxcrypt/lib/crypt-gost-yescrypt.c
|
|
168
|
+
- ext/libxcrypt/lib/crypt-md5.c
|
|
169
|
+
- ext/libxcrypt/lib/crypt-nthash.c
|
|
170
|
+
- ext/libxcrypt/lib/crypt-obsolete.h
|
|
171
|
+
- ext/libxcrypt/lib/crypt-pbkdf1-sha1.c
|
|
172
|
+
- ext/libxcrypt/lib/crypt-port.h
|
|
173
|
+
- ext/libxcrypt/lib/crypt-scrypt.c
|
|
174
|
+
- ext/libxcrypt/lib/crypt-sha256.c
|
|
175
|
+
- ext/libxcrypt/lib/crypt-sha512.c
|
|
176
|
+
- ext/libxcrypt/lib/crypt-sm3-yescrypt.c
|
|
177
|
+
- ext/libxcrypt/lib/crypt-sm3.c
|
|
178
|
+
- ext/libxcrypt/lib/crypt-static.c
|
|
179
|
+
- ext/libxcrypt/lib/crypt-sunmd5.c
|
|
180
|
+
- ext/libxcrypt/lib/crypt-yescrypt.c
|
|
181
|
+
- ext/libxcrypt/lib/crypt.c
|
|
182
|
+
- ext/libxcrypt/lib/crypt.h.in
|
|
183
|
+
- ext/libxcrypt/lib/gen-des-tables.c
|
|
184
|
+
- ext/libxcrypt/lib/hashes.conf
|
|
185
|
+
- ext/libxcrypt/lib/libcrypt.map.in
|
|
186
|
+
- ext/libxcrypt/lib/libcrypt.minver
|
|
187
|
+
- ext/libxcrypt/lib/libxcrypt.pc.in
|
|
188
|
+
- ext/libxcrypt/lib/util-base64.c
|
|
189
|
+
- ext/libxcrypt/lib/util-gensalt-sha.c
|
|
190
|
+
- ext/libxcrypt/lib/util-get-random-bytes.c
|
|
191
|
+
- ext/libxcrypt/lib/util-make-failure-token.c
|
|
192
|
+
- ext/libxcrypt/lib/util-xbzero.c
|
|
193
|
+
- ext/libxcrypt/lib/util-xstrcpy.c
|
|
194
|
+
- ext/libxcrypt/lib/xcrypt.h.in
|
|
195
|
+
- ext/libxcrypt/libxcrypt.spec.rpkg
|
|
196
|
+
- ext/libxcrypt/rpkg.conf
|
|
197
|
+
- ext/libxcrypt/rpkg.macros
|
|
198
|
+
- ext/libxcrypt/test/TestCommon.pm
|
|
199
|
+
- ext/libxcrypt/test/alg-des.c
|
|
200
|
+
- ext/libxcrypt/test/alg-gost3411-2012-hmac.c
|
|
201
|
+
- ext/libxcrypt/test/alg-gost3411-2012.c
|
|
202
|
+
- ext/libxcrypt/test/alg-hmac-sha1.c
|
|
203
|
+
- ext/libxcrypt/test/alg-md4.c
|
|
204
|
+
- ext/libxcrypt/test/alg-md5.c
|
|
205
|
+
- ext/libxcrypt/test/alg-pbkdf-hmac-sha256.c
|
|
206
|
+
- ext/libxcrypt/test/alg-sha1.c
|
|
207
|
+
- ext/libxcrypt/test/alg-sha256.c
|
|
208
|
+
- ext/libxcrypt/test/alg-sha512.c
|
|
209
|
+
- ext/libxcrypt/test/alg-sm3-hmac.c
|
|
210
|
+
- ext/libxcrypt/test/alg-sm3.c
|
|
211
|
+
- ext/libxcrypt/test/alg-yescrypt.c
|
|
212
|
+
- ext/libxcrypt/test/badsalt.c
|
|
213
|
+
- ext/libxcrypt/test/badsetting.c
|
|
214
|
+
- ext/libxcrypt/test/byteorder.c
|
|
215
|
+
- ext/libxcrypt/test/checksalt.c
|
|
216
|
+
- ext/libxcrypt/test/compile-strong-alias.c
|
|
217
|
+
- ext/libxcrypt/test/crypt-badargs.c
|
|
218
|
+
- ext/libxcrypt/test/crypt-gost-yescrypt.c
|
|
219
|
+
- ext/libxcrypt/test/crypt-nested-call.c
|
|
220
|
+
- ext/libxcrypt/test/crypt-sm3-yescrypt.c
|
|
221
|
+
- ext/libxcrypt/test/crypt-too-long-phrase.c
|
|
222
|
+
- ext/libxcrypt/test/des-cases.h
|
|
223
|
+
- ext/libxcrypt/test/des-obsolete.c
|
|
224
|
+
- ext/libxcrypt/test/des-obsolete_r.c
|
|
225
|
+
- ext/libxcrypt/test/explicit-bzero.c
|
|
226
|
+
- ext/libxcrypt/test/gensalt-bcrypt_x.c
|
|
227
|
+
- ext/libxcrypt/test/gensalt-extradata.c
|
|
228
|
+
- ext/libxcrypt/test/gensalt-nested-call.c
|
|
229
|
+
- ext/libxcrypt/test/gensalt-nthash.c
|
|
230
|
+
- ext/libxcrypt/test/gensalt.c
|
|
231
|
+
- ext/libxcrypt/test/getrandom-fallbacks.c
|
|
232
|
+
- ext/libxcrypt/test/getrandom-interface.c
|
|
233
|
+
- ext/libxcrypt/test/ka-table-gen.py
|
|
234
|
+
- ext/libxcrypt/test/ka-table.inc
|
|
235
|
+
- ext/libxcrypt/test/ka-tester.c
|
|
236
|
+
- ext/libxcrypt/test/preferred-method.c
|
|
237
|
+
- ext/libxcrypt/test/short-outbuf.c
|
|
238
|
+
- ext/libxcrypt/test/special-char-salt.c
|
|
239
|
+
- ext/libxcrypt/test/symbols-compat.pl
|
|
240
|
+
- ext/libxcrypt/test/symbols-renames.pl
|
|
241
|
+
- ext/libxcrypt/test/symbols-static.pl
|
|
242
|
+
- ext/xcrypt/xcrypt.c
|
|
243
|
+
- lib/xcrypt.rb
|
|
244
|
+
- lib/xcrypt/ffi.rb
|
|
245
|
+
- lib/xcrypt/version.rb
|
|
246
|
+
licenses:
|
|
247
|
+
- MIT
|
|
248
|
+
metadata:
|
|
249
|
+
source_code_uri: https://github.com/rkh/ruby-xcrypt
|
|
250
|
+
rdoc_options: []
|
|
251
|
+
require_paths:
|
|
252
|
+
- lib
|
|
253
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
254
|
+
requirements:
|
|
255
|
+
- - ">="
|
|
256
|
+
- !ruby/object:Gem::Version
|
|
257
|
+
version: '3.0'
|
|
258
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
259
|
+
requirements:
|
|
260
|
+
- - ">="
|
|
261
|
+
- !ruby/object:Gem::Version
|
|
262
|
+
version: '0'
|
|
263
|
+
requirements: []
|
|
264
|
+
rubygems_version: 4.0.8
|
|
265
|
+
specification_version: 4
|
|
266
|
+
summary: Ruby FFI bindings for libxcrypt
|
|
267
|
+
test_files: []
|