mirror of
https://github.com/emmansun/gmsm.git
synced 2025-09-15 19:35:25 +08:00
![github-actions[bot]](/assets/img/avatar_default.png)
* build(deps): bump github/codeql-action from 3.29.11 to 3.30.0 (#361) Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.29.11 to 3.30.0. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](3c3833e0f8...2d92b76c45
) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 3.30.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps): bump codecov/codecov-action from 5.5.0 to 5.5.1 (#362) Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 5.5.0 to 5.5.1. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](fdcc847654...5a1091511a
) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-version: 5.5.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps): bump actions/setup-go from 5.5.0 to 6.0.0 (#363) Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5.5.0 to 6.0.0. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](d35c59abb0...4469467582
) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps): bump github/codeql-action from 3.30.0 to 3.30.1 (#364) Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.30.0 to 3.30.1. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](2d92b76c45...f1f6e5f6af
) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 3.30.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps): bump step-security/harden-runner from 2.13.0 to 2.13.1 (#367) Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.13.0 to 2.13.1. - [Release notes](https://github.com/step-security/harden-runner/releases) - [Commits](ec9f2d5744...f4a75cfd61
) --- updated-dependencies: - dependency-name: step-security/harden-runner dependency-version: 2.13.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps): bump github/codeql-action from 3.30.1 to 3.30.2 (#368) Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.30.1 to 3.30.2. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](f1f6e5f6af...d3678e237b
) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 3.30.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * feat(mlkem): initialize mlkem from golang standard library * chore(mlkem): refactoring, reduce alloc times * build(deps): bump github/codeql-action from 3.30.2 to 3.30.3 (#369) Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.30.2 to 3.30.3. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](d3678e237b...192325c861
) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 3.30.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * doc(README): include MLKEM --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sun Yimin <emmansun@users.noreply.github.com>
178 lines
4.6 KiB
Go
178 lines
4.6 KiB
Go
// Copyright 2024 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
"go/ast"
|
|
"go/format"
|
|
"go/parser"
|
|
"go/token"
|
|
"log"
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
var replacements512 = map[string]string{
|
|
"k": "k512",
|
|
"η1": "η1_512",
|
|
"η2": "η2_512",
|
|
|
|
"CiphertextSize768": "CiphertextSize512",
|
|
"EncapsulationKeySize768": "EncapsulationKeySize512",
|
|
"DecapsulationKeySize768": "DecapsulationKeySize512",
|
|
|
|
"encryptionKey": "encryptionKey512",
|
|
"decryptionKey": "decryptionKey512",
|
|
|
|
"EncapsulationKey768": "EncapsulationKey512",
|
|
"NewEncapsulationKey768": "NewEncapsulationKey512",
|
|
"parseEK": "parseEK512",
|
|
|
|
"kemEncaps": "kemEncaps512",
|
|
"pkeEncrypt": "pkeEncrypt512",
|
|
|
|
"DecapsulationKey768": "DecapsulationKey512",
|
|
"NewDecapsulationKey768": "NewDecapsulationKey512",
|
|
"NewDecapsulationKeyFromSeed768": "NewDecapsulationKeyFromSeed512",
|
|
"newKeyFromSeed": "newKeyFromSeed512",
|
|
|
|
"kemDecaps": "kemDecaps512",
|
|
"pkeDecrypt": "pkeDecrypt512",
|
|
|
|
"GenerateKey768": "GenerateKey512",
|
|
"GenerateKeyInternal768": "GenerateKeyInternal512",
|
|
"generateKey": "generateKey512",
|
|
|
|
"kemKeyGen": "kemKeyGen512",
|
|
}
|
|
|
|
var replacements1024 = map[string]string{
|
|
"k": "k1024",
|
|
"η1": "η1_1024",
|
|
"η2": "η2_1024",
|
|
|
|
"CiphertextSize768": "CiphertextSize1024",
|
|
"EncapsulationKeySize768": "EncapsulationKeySize1024",
|
|
"DecapsulationKeySize768": "DecapsulationKeySize1024",
|
|
|
|
"encryptionKey": "encryptionKey1024",
|
|
"decryptionKey": "decryptionKey1024",
|
|
|
|
"EncapsulationKey768": "EncapsulationKey1024",
|
|
"NewEncapsulationKey768": "NewEncapsulationKey1024",
|
|
"parseEK": "parseEK1024",
|
|
|
|
"kemEncaps": "kemEncaps1024",
|
|
"pkeEncrypt": "pkeEncrypt1024",
|
|
|
|
"DecapsulationKey768": "DecapsulationKey1024",
|
|
"NewDecapsulationKey768": "NewDecapsulationKey1024",
|
|
"NewDecapsulationKeyFromSeed768": "NewDecapsulationKeyFromSeed1024",
|
|
"newKeyFromSeed": "newKeyFromSeed1024",
|
|
|
|
"kemDecaps": "kemDecaps1024",
|
|
"pkeDecrypt": "pkeDecrypt1024",
|
|
|
|
"GenerateKey768": "GenerateKey1024",
|
|
"GenerateKeyInternal768": "GenerateKeyInternal1024",
|
|
"generateKey": "generateKey1024",
|
|
|
|
"kemKeyGen": "kemKeyGen1024",
|
|
"kemPCT": "kemPCT1024",
|
|
|
|
"encodingSize4": "encodingSize5",
|
|
"encodingSize10": "encodingSize11",
|
|
"ringCompressAndEncode4": "ringCompressAndEncode5",
|
|
"ringCompressAndEncode10": "ringCompressAndEncode11",
|
|
"ringDecodeAndDecompress4": "ringDecodeAndDecompress5",
|
|
"ringDecodeAndDecompress10": "ringDecodeAndDecompress11",
|
|
}
|
|
|
|
func replaceIdentifiers(inputFile, outputFile *string, replacements map[string]string) {
|
|
fset := token.NewFileSet()
|
|
f, err := parser.ParseFile(fset, *inputFile, nil, parser.SkipObjectResolution|parser.ParseComments)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
cmap := ast.NewCommentMap(fset, f, f.Comments)
|
|
|
|
// Drop header comments.
|
|
cmap[ast.Node(f)] = nil
|
|
|
|
// Remove top-level consts used across the main and generated files.
|
|
var newDecls []ast.Decl
|
|
for _, decl := range f.Decls {
|
|
switch d := decl.(type) {
|
|
case *ast.GenDecl:
|
|
if d.Tok == token.CONST {
|
|
continue // Skip const declarations
|
|
}
|
|
if d.Tok == token.IMPORT {
|
|
cmap[decl] = nil // Drop pre-import comments.
|
|
}
|
|
}
|
|
newDecls = append(newDecls, decl)
|
|
}
|
|
f.Decls = newDecls
|
|
|
|
// Replace identifiers.
|
|
ast.Inspect(f, func(n ast.Node) bool {
|
|
switch x := n.(type) {
|
|
case *ast.Ident:
|
|
if replacement, ok := replacements[x.Name]; ok {
|
|
x.Name = replacement
|
|
}
|
|
}
|
|
return true
|
|
})
|
|
|
|
// Replace identifiers in comments.
|
|
for _, c := range f.Comments {
|
|
for _, l := range c.List {
|
|
for k, v := range replacements {
|
|
if k == "k" || k == "l" {
|
|
continue
|
|
}
|
|
l.Text = strings.ReplaceAll(l.Text, k, v)
|
|
}
|
|
}
|
|
}
|
|
|
|
out, err := os.Create(*outputFile)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
defer out.Close()
|
|
|
|
out.WriteString(`// Copyright 2025 Sun Yimin. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
// Code generated by generate.go. DO NOT EDIT.
|
|
|
|
//go:build go1.24
|
|
|
|
`)
|
|
|
|
f.Comments = cmap.Filter(f).Comments()
|
|
err = format.Node(out, fset, f)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
}
|
|
|
|
func main() {
|
|
inputFile := flag.String("mlkem768", "", "")
|
|
outputFile512 := flag.String("mlkem512", "", "")
|
|
outputFile1024 := flag.String("mlkem1024", "", "")
|
|
flag.Parse()
|
|
|
|
replaceIdentifiers(inputFile, outputFile512, replacements512)
|
|
replaceIdentifiers(inputFile, outputFile1024, replacements1024)
|
|
}
|