Skip to content

Commit c25fdb2

Browse files
committed
deps: Updated the Go dependencies.
1 parent e4d6dff commit c25fdb2

File tree

12 files changed

+22
-22
lines changed

12 files changed

+22
-22
lines changed

docs/data-sources/hash_argon2id.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ subcategory: ""
44
description: |-
55
Generates the Argon2id hash of a string with its associated salt value.
66
For the algorithm’s configuration, we’ve chosen parameters that balance security and performance.
7-
7+
88
Time = 1
99
Memory = 64 MB
1010
Threads = All
1111
Key Length = 32 bytes
12-
12+
1313
Maps to the corefunc.HashArgon2id() https://pkg.go.dev/github.com/northwood-labs/terraform-provider-corefunc/v2/corefunc#HashArgon2id Go method, which can be used in Terratest https://terratest.gruntwork.io.
1414
---
1515

docs/data-sources/hash_argon2id_base64.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: |-
55
Generates the Argon2id hash of a string with its associated salt value. Returns a Base64
66
value instead of a hexadecimal string.
77
For the algorithm’s configuration, we’ve chosen parameters that balance security and performance.
8-
8+
99
Time = 1
1010
Memory = 64 MB
1111
Threads = All
1212
Key Length = 32 bytes
13-
13+
1414
Maps to the corefunc.Base64HashArgon2id() https://pkg.go.dev/github.com/northwood-labs/terraform-provider-corefunc/v2/corefunc#Base64HashArgon2id Go method, which can be used in Terratest https://terratest.gruntwork.io.
1515
---
1616

docs/data-sources/hash_scrypt.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ subcategory: ""
44
description: |-
55
Generates the Scrypt hash of a string with its associated salt value.
66
For the algorithm’s configuration, we’ve chosen parameters that balance security and performance.
7-
7+
88
N = 32768 (CPU/memory cost parameter)
99
r = 8 (block size parameter)
1010
p = 1 (parallelization parameter)
1111
Key Length = 32 bytes
12-
12+
1313
Maps to the corefunc.HashScrypt() https://pkg.go.dev/github.com/northwood-labs/terraform-provider-corefunc/v2/corefunc#HashScrypt Go method, which can be used in Terratest https://terratest.gruntwork.io.
1414
---
1515

docs/data-sources/hash_scrypt_base64.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: |-
55
Generates the Scrypt hash of a string with its associated salt value. Returns a Base64 value
66
instead of a hexadecimal string.
77
For the algorithm’s configuration, we’ve chosen parameters that balance security and performance.
8-
8+
99
N = 32768 (CPU/memory cost parameter)
1010
r = 8 (block size parameter)
1111
p = 1 (parallelization parameter)
1212
Key Length = 32 bytes
13-
13+
1414
Maps to the corefunc.HashScryptBase64() https://pkg.go.dev/github.com/northwood-labs/terraform-provider-corefunc/v2/corefunc#HashScryptBase64 Go method, which can be used in Terratest https://terratest.gruntwork.io.
1515
---
1616

docs/functions/hash_argon2id.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ subcategory: ""
44
description: |-
55
Generates the Argon2id hash of a string with its associated salt value.
66
For the algorithm’s configuration, we’ve chosen parameters that balance security and performance.
7-
7+
88
Time = 1
99
Memory = 64 MB
1010
Threads = All
1111
Key Length = 32 bytes
12-
12+
1313
Maps to the corefunc.HashArgon2id() https://pkg.go.dev/github.com/northwood-labs/terraform-provider-corefunc/v2/corefunc#HashArgon2id Go method, which can be used in Terratest https://terratest.gruntwork.io.
1414
---
1515

docs/functions/hash_argon2id_base64.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: |-
55
Generates the Argon2id hash of a string with its associated salt value. Returns a Base64
66
value instead of a hexadecimal string.
77
For the algorithm’s configuration, we’ve chosen parameters that balance security and performance.
8-
8+
99
Time = 1
1010
Memory = 64 MB
1111
Threads = All
1212
Key Length = 32 bytes
13-
13+
1414
Maps to the corefunc.HashArgon2idBase64() https://pkg.go.dev/github.com/northwood-labs/terraform-provider-corefunc/v2/corefunc#HashArgon2idBase64 Go method, which can be used in Terratest https://terratest.gruntwork.io.
1515
---
1616

docs/functions/hash_scrypt.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ subcategory: ""
44
description: |-
55
Generates the Scrypt hash of a string with its associated salt value.
66
For the algorithm’s configuration, we’ve chosen parameters that balance security and performance.
7-
7+
88
N = 32768 (CPU/memory cost parameter)
99
r = 8 (block size parameter)
1010
p = 1 (parallelization parameter)
1111
Key Length = 32 bytes
12-
12+
1313
Maps to the corefunc.HashScrypt() https://pkg.go.dev/github.com/northwood-labs/terraform-provider-corefunc/v2/corefunc#HashScrypt Go method, which can be used in Terratest https://terratest.gruntwork.io.
1414
---
1515

docs/functions/hash_scrypt_base64.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ description: |-
55
Generates the Scrypt hash of a string with its associated salt value. Returns a Base64 value
66
instead of a hexadecimal string.
77
For the algorithm’s configuration, we’ve chosen parameters that balance security and performance.
8-
8+
99
N = 32768 (CPU/memory cost parameter)
1010
r = 8 (block size parameter)
1111
p = 1 (parallelization parameter)
1212
Key Length = 32 bytes
13-
13+
1414
Maps to the corefunc.HashScryptBase64() https://pkg.go.dev/github.com/northwood-labs/terraform-provider-corefunc/v2/corefunc#HashScryptBase64 Go method, which can be used in Terratest https://terratest.gruntwork.io.
1515
---
1616

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ require (
1616
github.com/hashicorp/terraform-plugin-framework v1.17.0
1717
github.com/hashicorp/terraform-plugin-go v0.29.0
1818
github.com/hashicorp/terraform-plugin-log v0.10.0
19-
github.com/hashicorp/terraform-plugin-testing v1.13.3
19+
github.com/hashicorp/terraform-plugin-testing v1.14.0
2020
github.com/lithammer/dedent v1.1.0
2121
github.com/mattn/go-runewidth v0.0.19
2222
github.com/mitchellh/go-homedir v1.1.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,8 @@ github.com/hashicorp/terraform-plugin-log v0.10.0 h1:eu2kW6/QBVdN4P3Ju2WiB2W3Obj
157157
github.com/hashicorp/terraform-plugin-log v0.10.0/go.mod h1:/9RR5Cv2aAbrqcTSdNmY1NRHP4E3ekrXRGjqORpXyB0=
158158
github.com/hashicorp/terraform-plugin-sdk/v2 v2.38.1 h1:mlAq/OrMlg04IuJT7NpefI1wwtdpWudnEmjuQs04t/4=
159159
github.com/hashicorp/terraform-plugin-sdk/v2 v2.38.1/go.mod h1:GQhpKVvvuwzD79e8/NZ+xzj+ZpWovdPAe8nfV/skwNU=
160-
github.com/hashicorp/terraform-plugin-testing v1.13.3 h1:QLi/khB8Z0a5L54AfPrHukFpnwsGL8cwwswj4RZduCo=
161-
github.com/hashicorp/terraform-plugin-testing v1.13.3/go.mod h1:WHQ9FDdiLoneey2/QHpGM/6SAYf4A7AZazVg7230pLE=
160+
github.com/hashicorp/terraform-plugin-testing v1.14.0 h1:5t4VKrjOJ0rg0sVuSJ86dz5K7PHsMO6OKrHFzDBerWA=
161+
github.com/hashicorp/terraform-plugin-testing v1.14.0/go.mod h1:1qfWkecyYe1Do2EEOK/5/WnTyvC8wQucUkkhiGLg5nk=
162162
github.com/hashicorp/terraform-registry-address v0.4.0 h1:S1yCGomj30Sao4l5BMPjTGZmCNzuv7/GDTDX99E9gTk=
163163
github.com/hashicorp/terraform-registry-address v0.4.0/go.mod h1:LRS1Ay0+mAiRkUyltGT+UHWkIqTFvigGn/LbMshfflE=
164164
github.com/hashicorp/terraform-svchost v0.1.1 h1:EZZimZ1GxdqFRinZ1tpJwVxxt49xc/S52uzrw4x0jKQ=

0 commit comments

Comments
 (0)