Skip to content

Commit

Permalink
Fixed GOST sBox arg bug
Browse files Browse the repository at this point in the history
  • Loading branch information
n1474335 committed Jun 6, 2024
1 parent 18159ce commit 74d0166
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/core/operations/GOSTDecrypt.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class GOSTDecrypt extends Operation {
value: [
{
name: "GOST 28147 (1989)",
on: [6]
on: [5]
},
{
name: "GOST R 34.12 (Magma, 2015)",
Expand Down
2 changes: 1 addition & 1 deletion src/core/operations/GOSTEncrypt.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class GOSTEncrypt extends Operation {
value: [
{
name: "GOST 28147 (1989)",
on: [6]
on: [5]
},
{
name: "GOST R 34.12 (Magma, 2015)",
Expand Down
2 changes: 1 addition & 1 deletion src/core/operations/GOSTKeyUnwrap.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class GOSTKeyUnwrap extends Operation {
value: [
{
name: "GOST 28147 (1989)",
on: [6]
on: [5]
},
{
name: "GOST R 34.12 (Magma, 2015)",
Expand Down
2 changes: 1 addition & 1 deletion src/core/operations/GOSTKeyWrap.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class GOSTKeyWrap extends Operation {
value: [
{
name: "GOST 28147 (1989)",
on: [6]
on: [5]
},
{
name: "GOST R 34.12 (Magma, 2015)",
Expand Down
2 changes: 1 addition & 1 deletion src/core/operations/GOSTSign.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class GOSTSign extends Operation {
value: [
{
name: "GOST 28147 (1989)",
on: [6]
on: [5]
},
{
name: "GOST R 34.12 (Magma, 2015)",
Expand Down
2 changes: 1 addition & 1 deletion src/core/operations/GOSTVerify.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class GOSTVerify extends Operation {
value: [
{
name: "GOST 28147 (1989)",
on: [6]
on: [5]
},
{
name: "GOST R 34.12 (Magma, 2015)",
Expand Down

0 comments on commit 74d0166

Please sign in to comment.