Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update module github.com/emmansun/gmsm to v0.29.2 #28

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented May 3, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/emmansun/gmsm v0.11.5 -> v0.29.2 age adoption passing confidence

Release Notes

emmansun/gmsm (github.com/emmansun/gmsm)

v0.29.2

Compare Source

Notable Changes:
  • pkcs7: align pkix.AlgorithmIdentifier Null Parameters with others.
  • sm4: arm64 sm4key export optimization.
  • sm4: arm64 fix sm4ni gcm init issue (orignally used AES-NI).
  • sm4: gcm purego optimize NewGCM method.
  • sm4: ppc64x transpose matrix optimization with VMRGEW/VMRGOW/XXPERMDI instructions #​261
  • sm4: ppc64x optimization with VPERMXOR instruction for SM4-SBOX #​262
  • zuc: ppc64x optimization with VPERMXOR instruction for both ZUC-SBOX and data bit reverse #​262

v0.29.1

Compare Source

Notable Changes:
  • pkcs7: SignWithoutAttr supports skip certificates #​254
  • build(deps): bump golang.org/x/crypto from 0.27.0 to 0.28.0 #​257
  • build(deps): bump golang.org/x/sys from 0.25.0 to 0.26.0 #​258

v0.29.0

Compare Source

Notable Changes:

(Mainly for ppc64x and s390x)

  • cipher: s390x/ppc64x xts optimzation.#​250
  • pkcs7: support GetRecipients.
  • sm3: s390x/ppc64x block and kdf optimzation.#​244 #​245
  • sm4: ppc64x optimization with vsbox and clmul.#​249
  • sm4: expandkey align with single block encryption.
  • sm4: arm64 cbc decrypt, reduce memory load.
  • sm9/bn256: ppc64x gfp and value copy/conditional move optimization.#​256
  • zuc: ppc64x eea optimization with vsbox.#​254
  • zuc: ppc64x eia and eia256 optimization with clmul.#​253
  • zuc: arm64 eea optimization, reduce MOVW instructions.

v0.28.0

Compare Source

Notable Changes:
  • pbes: initial supports GM/T 0091-2020 #​243
  • pkcs8: support legacy PBES1 algorithms #​242
  • sm2: public key recover from signature bug #​239
  • smx509: 兼容PublicKeyAlgorithm OID等于1.2.156.10197.1.301的SM2证书的解析 #​236
  • zuc: eea实现通过Stream规范性测试 #​240
  • internal/cryptotest: 从最新的Golang引入,提高对称加密、HASH实现的规范性
  • internal/sm2ec: replace P256OrdInverse with generated code #​241
  • internal/sm2ec: ppc64le asm implementation #​237
  • internal/sm2ec: s390x asm implementation #​235
  • internal/subtle: port ppc64x from Golang and implement s390x #​238

v0.27.4

Compare Source

Notable Changes:
  • smx509: fix CSRResponse sign certs handle issue
  • pkcs7: follow GB/T 35275-2017 9.1 strictly
  • pkcs7: polish, improve maintainability
  • doc: add pkcs12.md, zuc.md

v0.27.3

Compare Source

Notable Changes:
  • pkcs7: Support legacy CFCA SADK(3.1.X)'s envelope message functions.
  • smx509: Support CSR Response Marshalling/Parsing according to "GM/T 0092-2020 Specification of certificate request syntax based on SM2 cryptographic algorithm".
  • doc: 新增《CFCA互操作性指南》

v0.27.2

Compare Source

fix #​226

v0.27.1

Compare Source

Notable Changes:
  • sm3-kdf: continue to improve performance.
  • sm2-extension: recover public keys.
  • drbg: support NIST HMAC-DRBG.
  • doc: supplement sm2 encryption performance and sm2 extensions.

Deprecated

v0.27.0

Compare Source

Notable Changes:
  • kdf-sm3: Improve KDF performance, support 4 way (AMD64 SSE/AVX & ARM64), 8 way (AMD64 AVX2). #​220 #​221 #​222 SM2加解密性能
  • smx509: sync golang latest changes. #​223
  • sm4: reduce allocations & reduce slice checking internally.
  • dependencies upgrade: golang.org/x/crypto v0.23.0 / golang.org/x/sys v0.20.0.

Deprecated

v0.26.1

Compare Source

Notable Changes:
  • internal/cpuid: fix arm64 darwin build issue
  • internal/bigmod: unroll loop in addMulVVW for ppc64x (go1.19+)
  • internal/bigmod: port riscv64 implementation from Golang
  • internal/sm2ec: amd64, optimize select SIMD
  • internal/sm2ec: amd64 refactoring, reduce duplicated code
  • internal/sm2ec: use ADX for mul/sqr and internal sqr
  • internal/sm2ec: amd64, optimize point double
  • smx509: avoid Android root store paths on other Linuxes
  • smx509: implement SetFallbackRoots
  • smx509: implement AddCertWithConstraint
  • upgrade x/sys to 0.18.0, x/crypto to 0.21.0

v0.26.0

Compare Source

Notable Changes:
  • internal/sm2ec: adjust sub/add order in WW-MM reduction steps to make sure no unexpected carry /borrow.
  • internal/sm2ec: use ADCX/ADOX for order mul/sqr WW-MM.
  • sm4: optimize constant loading on arm64.
  • zuc: optimize constant loading on arm64.
  • upgrade third party dependencies.

v0.25.0

Compare Source

Notable Changes:
  • fix darwin/arm64 AES/PMULL features detect issue. darwin/arm64架构下,需要的CPU特性不好检测,golang.org/x/sys也没有处理这个问题,这里参考了Go语言internal/cpu中的处理方式。
  • sm4: change to use pure go for single block encryption/decryption by default. 由于使用AES-NI实现的单block性能不佳(尤其是ARM64下),从这个版本开始单block处理改用纯Go语言查表方式实现,用户可以通过环境变量FORCE_SM4BLOCK_AESNI来强制使用AES-NI。

v0.24.3

Compare Source

Notable Changes:

v0.24.2

Compare Source

Notable Changes:
  • smx509: can parse openssl v3.1.3 p8 sm2 private key #​197 (解析openssl v3.1.3产生的SM2 P8私钥,其算法指定为SM2曲线OID)
  • dep: upgrade dependencies (升级第三方依赖库)
  • doc: added sm9 application guide (SM9应用指南)

v0.24.1

Compare Source

Notable changes:
  • sm2/ecdh: Fix and enhance sm2/ecdh generate private key checking #​189. 修复私钥取值范围验证问题。
  • sm2: Just compute the inverse of private key plus one per sm2.PrivateKey instance once #​190. 每个私钥实例的私钥加一求逆运算仅计算一次,提升签名性能。
  • sm2: Provide NewPrivateKey/NewPrivateKeyFromInt/NewPublicKey functions to avoid misapply #​191. 提供通过给定值创建私钥、公钥的方法,方便用户使用。
go: v1.21.1
goos: windows
goarch: amd64
pkg: github.com/emmansun/gmsm/sm2
cpu: Intel(R) Core(TM) i5-9500 CPU @​ 3.00GHz
BenchmarkSign_SM2
BenchmarkSign_SM2-6
   80709	     14215 ns/op	    1544 B/op	      22 allocs/op
BenchmarkVerify_SM2
BenchmarkVerify_SM2-6
   19902	     60295 ns/op	     848 B/op	      17 allocs/op   
BenchmarkSign_P256
BenchmarkSign_P256-6
   51289	     23286 ns/op	    2440 B/op	      33 allocs/op
BenchmarkVerify_P256
BenchmarkVerify_P256-6
   17524	     67679 ns/op	     944 B/op	      20 allocs/op

v0.24.0

Compare Source

Notable Changes:
  • cipher: add HCTR/BC/OFBNLF operation modes (支持HCTR/BC/OFBNLF工作模式)
  • sm2: fix enveloped key ASN.1 marshal/unmarshal issue #​188 (修复SM2密钥对的保护数据格式的ASN.1处理错误)
  • sm2: expose method CalculateSM2Hash function (提供SM2签名算法中计算哈希值的函数,可能有些KMS只接受HASH值)
  • doc: enable github pages, added sm2/sm3/sm4 application guide (使用github pages功能提供了SM2/SM3/SM4应用指南)
  • dep: upgrade dependencies (升级第三方依赖库)

v0.23.0

Compare Source

Notable Changes:
  • Upgrade dependencies (golang.org/x/sys v0.14.0 & golang.org/x/crypto v0.15.0), this requires Go v1.18+.
  • Change interface{} to any, and remove "+build" build tag.
  • 切片直接转数组指针.
  • internal/subtle xor 简化代码,去除重复.
  • arm64: Change VMOV to VDUP, duplicate value in general-purpose register to vector.
  • smx509: optimize the performance of checkSignature.
  • zuc: arm64 eia, uses VDUP/VMOVQ/VTBL to optimize the performance.

Requires Go v1.18+ since v0.23.0!

v0.22.1

Compare Source

Notable Changes:
  • internal/sm2ec: arm64, change global data loading method, change y2 loading method in p256PointAddAffineAsm.
  • sm4: arm64, change global data loading method.
  • zuc: arm64, change global data loading method.

v0.22.0

Compare Source

Notable Changes:
  • internal/sm2ec: uses NEON instructions for conditional move, select value from table and so on.
  • sm9/bn256: uses NEON instructions for conditional move.

Will upgrade Go to v1.18 from v0.23.0.

v0.21.5

Compare Source

Same as v0.21.5-beta.1

v0.21.4

Compare Source

Notable Changes:

v0.21.3

Compare Source

Notable Changes:
  • ZUC: fix eea src/dst can't share same buffer issue. #​169
  • SM4: 优化线性变换L. #​168

v0.21.2

Compare Source

Notable Changes:

v0.21.1

Compare Source

Notable Changes:
  • sm3: do not use RORX in avx implementation. #​157 RORX指令属于BMI2指令集,上个release使用了AVX+BMI2组合,很多仅支持AVX的老机器性能没有得到提升。
  • sm3: amd64 SSE implementation. #​165 虽然不支持AVX的AMD64 架构的CPU应该不多了,还是支持一下吧。
  • sm3: message schedule optimization. #​164 尽量减少使用指令,使用和sha256实现不一样的思路,具体请参考SM3实现及优化
  • sm3: message compression optimization. #​163 #​160 压缩函数,尽量减少指令。
  • sm3: reduce stack memory usage for amd64 avx & arm64 neon. #​162

Full Changelog: emmansun/gmsm@v0.21.0...v0.21.1

v0.21.0

Compare Source

Notable Changes:

v0.20.2

Compare Source

Notable Changes:
  • sm3 去除R15使用,plugin编译没有特殊实现;
  • zuc core去除R15使用,plugin编译没有特殊实现;
  • internal/sm2ec: 单独为plugin编译flag去除R15使用;
  • sm9/bn256: gfp单独为plugin编译flag去除R15使用,gfp2未作修改(权衡性能和可维护性,除非必要);

v0.20.1

Compare Source

Notable Changes:
  • build: support plugin flag for amd64. 支持plugin编译flag,#​154,相对purego 编译flag 而言,保留了不使用R15的amd64 汇编实现。相对于arm64,amd64的可用通用寄存器较少,如果不使用R15,会有更多的内存、寄存器交互,汇编代码会更复杂,项目的实现和维护成本也会大量增加。可以考虑基于rpc的插件实现机制,譬如Go Plugin System over RPC
  • zuc: add comments. 增加代码说明。
  • upgrade golang.org/x/sys from 0.11.0 to 0.12.0.

v0.20.0

Compare Source

Notable Changes:
  • README: add acknowledgements.
  • cipher/xts: XTS mode $GF(2^{128})$ mul2 amd64/arm64 asm implementation.
  • sm4: xts amd64/arm64 asm implementation, #​151.
  • sm4: gcm amd64 optimization, #​152.

v0.19.3

Compare Source

Notable Changes:
  • padding: ISO/IEC 9797 method 2. 这也是GB/T 17964-2021中列出的填充方式2。
  • sm4: improve performance, especially for GCM, ECB, CBC decrypt.尽量使用SIMD寄存器,提高并行吞吐量,ECB, CBC解密的汇编实现。
  • internal/bigmod: fix duplicated function name issue. 修复和golang SDK(1.21+)中全局汇编函数名重复问题。

v0.19.2

Compare Source

Notable Changes:
  • sm9/bn256: gfP2 mul, mulu, square, squareu AMD64/ARM64 asm implementations.
  • sm9/bn256: use complete, porjective point addition/doubling fomulas, and related AMD64/ARM64 asm implementations.
  • sm9/bn256: GT uses cyclo6 squaring.
  • internal/sm2ec: add comments, especially for mont. reduction.

v0.19.1

Compare Source

Notable Change:
  • SM4: fix AVX version used AVX2 inst. issue.
  • SM9/BN256: add double/triple methods, fix gfpNeg issue, use Square as possible.
  • Upgrade dependencies.

v0.19.0

Compare Source

Notable Changes:
  • sm4: support AVX + AES-NI, for detail, pls reference #​135 (单独支持AVX+AES-NI)
  • sm4: improve SSE matrix transform performance (提升SSE矩阵转换性能)
  • sm9/bn256: Special square in final exponentiation, pls reference #​139 (特殊平方实现)
  • sm9/bn256: Optimize squaring, pls reference #​137 (优化扩域上平方运算)
  • sm9/bn256: Improve gfP marshal/unmarshal performance, pls reference #​140 (用asm实现gfP marshal 和 unmarshal)
  • sm9/bn256: value copy acceleration, pls reference #​136 (加速、减少值拷贝)

Full Changelog: emmansun/gmsm@v0.18.1...v0.19.0

v0.18.1

Compare Source

Notable Changes:
  • bigmod: fix non-ADX version addMulVVW256 bug introduced since v0.17.3.
  • sm2: remove CSPRNG usage.
  • sm9/bn256: use ADX together with MULX

v0.18.0

Compare Source

Notable Changes:
  • sm9/bn256: replace gfp asm implementations.

v0.17.5

Compare Source

Notable changes:
  • sm3: improve purego performance via loop unrolling, reduce assignment operations and precompute the constant rotation.
  • sm4: improve amd64 single block performance via PALIGNR instruction; improve CBC decrypt performance via reduce memory operations for both amd64 & arm64.
  • sm9/bn256: rewrite purego gfp (Add/Sub/Neg/Mul), improve performance and code readability.
  • sm9/bn256: curvePointMovCond twistPointMovCond gfP12MovCond asm implementation for amd64 & arm64.
  • build(deps): bump golang.org/x/crypto from 0.9.0 to 0.10.0

SM9 purego performance

goos: windows
goarch: amd64
pkg: github.com/emmansun/gmsm/sm9
cpu: Intel(R) Core(TM) i5-9500 CPU @​ 3.00GHz
BenchmarkSign-6   	     280	   4381620 ns/op	    6731 B/op	      62 allocs/op
BenchmarkVerify-6   	      62	  18846163 ns/op	   41736 B/op	     367 allocs/op
BenchmarkEncrypt-6   	     237	   4937050 ns/op	    9425 B/op	      73 allocs/op
BenchmarkDecrypt-6   	      79	  14977862 ns/op	   37644 B/op	     328 allocs/op

SM9 AMD64 performance

goos: windows
goarch: amd64
pkg: github.com/emmansun/gmsm/sm9
cpu: Intel(R) Core(TM) i5-9500 CPU @​ 3.00GHz
BenchmarkSign-6   	    2841	    400469 ns/op	   23117 B/op	     574 allocs/op
BenchmarkVerify-6   	     618	   1910290 ns/op	  163784 B/op	    3918 allocs/op
BenchmarkEncrypt-6   	    2352	    440718 ns/op	   24388 B/op	     582 allocs/op
BenchmarkDecrypt-6   	     721	   1557635 ns/op	  143055 B/op	    3359 allocs/op

v0.17.4

Compare Source

Notable Changes:
  • internal/sm2ec: use MULX(Unsigned Multiply Without Affecting Flags) and AVX2 to improve performance. 使用无符号乘法指令以及AVX2提升性能。
  • internal/sm2ec: replace ScalarMult window size from 5 to 6, and reduce the scalar to [0, N-1]. Please referhttps://github.com/emmansun/gmsm/discussions/1277 for detail. 解决ScalarMult实现中最后一个加法的两个点有可能相等的问题。
  • Improve sm3 sm4 pure go implementation performance. 提升sm3/4 纯go语言实现的性能。
  • sm9: get around assignment copies lock value to issue. 私钥中的主公钥改为引用,避免主公钥赋值时"assignment copies lock value"问题。
  • upgrade dependencies (golang.org/x/sys from v0.8.0 to v0.9.0). 升级依赖包。

v0.17.3

Compare Source

Notable Changes:
  • internal/subtle/xor: use avx2 if possible
  • internal/bigmod: switch to saturated limbs and optimization for 256 bits
  • sm4: finetune bounds check
  • drbg: fix drbg prng read issue when reseed
  • smx509: properly apply name constrains to roots and intermediates
  • upgrade dependencies

v0.17.2

Compare Source

Notable Changes:
  • sm9: optimize pairing

v0.17.1

Compare Source

Notable Changes:
  • sm9: performance improvement: reduce mul, use addchain to gen invert/sqrt.
  • sm9: implement 1-2-6-12 towering extensions for comparison.
  • drbg: do not share hash object, but it's still NOT concurrent safe.
  • upgrade dependencies.

v0.17.0

Compare Source

Notable changes:
  • sm2: Make opts EncrypterOpts/DecrypterOpts/SM2SignerOption fields private, this is an incompatible change! Please use related functions to construct the opts.
  • sm3/4: A64 Cryptographic instructions (SM4EKEY/SM4EKE, SM3PARTW1/SM3PARTW2/SM3SS1/SM3TT1A/SM3TT1B/SM3TT2A/SM3TT2B) test with QEMU and bug fix.
  • pkcs7: Enable sign without attributes, legacy systems still use this approach.
  • pkcs: Fix gcm parameters marshal asn1 issue, make ICVLen(default 12) optional.
  • pkcs: SM4 OID special handling: decryption - if there are parameters, then treat it as CBC mode, otherwise ECB mode; encryption - diabled SM4 OID.

Full Changelog: emmansun/gmsm@v0.16.0...v0.17.0

v0.16.0

Compare Source

Notable changes:

Full Changelog: emmansun/gmsm@v0.15.7...v0.16.0

v0.15.7

Compare Source

Notable changes
  • sm9: supports SM4 with ECB/CBC/CFB/OFB mode, this is incompatible change!!!
  • smx509: ParseTypedECPrivateKey, return ecdsa.PrivateKey or sm2.PrivateKey.
  • internal/bigmod: flag amd64 assembly as noescape.

v0.15.6

Compare Source

Notable changes
  • Add example tests for reference document
  • Upgrade dependencies
  • Change smx509.CreateCertificate method's template and parent parameter type from x509.Certificate to any

v0.15.5

Compare Source

Notable changes
  • sm2: verify validity of signature parameters in Verify
  • sm2: use ReadASN1Integer instead of clone private code
  • sm2/sm9: ErrDecryption, avoid adaptive attacks
  • sm9: use bigmod instead of math/big, verify method
  • smx509: include more hints for verification failure

v0.15.4

Compare Source

Notable changes
  • ecdh: move ECDH method to PrivateKey
  • sm2,smx509: add encoding paths for SM2 ecdh keys
  • sm2: use bigmod and sm2ec instead of math/big and crypto/elliptic
  • sm3: reduce Write calls in Sum
  • sm9: use bigmod instead of math/big
  • smx509: Reallow duplicate attributes in CSRs
  • smx509: create CRLs with Issuer.RawSubject
  • smx509: remove unused member Raw from certificate
  • smx509: add support for PKCS8/PKIX X25519 key encodings preparation
  • all: change build tag generic to purego & import nat package

v0.15.3

Compare Source

  • export ParseName for tls/tlcp to parse certificate authorities
  • upgrade dependencies

v0.15.2

Compare Source

What's changed
  • Add disclaimer and update readme.
  • Add SM2 key exchange sample test case implementation.
  • Add proxy methods for RSA pkcs1 private/public key handling.
  • Rollback the change of "ad-hoc release to fix issue ASN1 SM2密文含扩展部分".
  • Fix the issue of Verify() function without DNSName checking.
  • Fix the possible infinite loop in sm2 encryption method.

v0.15.1

Compare Source

ad-hoc release to fix issue "ASN1 SM2密文含扩展部分", #​90

v0.15.0

Compare Source

What's Changed
  1. Support drbg, Random Number Generation Using Deterministic Random Bit Generators.
  2. Support to parse GMSSL generated SM9 private keys.
  3. Upgrade dependencies.

v0.14.1

Compare Source

Notable Changes
  1. Support SM2-MQV and Key Agreement in ecdh, the safe, []byte-based APIs.
  2. Upgrade dependencies.
  3. SM2/9 key exchange, do not destroy both sides' ephemeral public keys.

Full Changelog: emmansun/gmsm@v0.14.0...v0.14.1

v0.14.0

Compare Source

What's Changed

  • Upgrade minimum supported golang version to 1.16 by @​emmansun in https://github.com/emmansun/gmsm/pull/78
  • Incompatibility changes for SM2/SM9 key exchange, do NOT keep keying data and provide method to destroy internal state
  • ECDH first version, SM2 curve supports Elliptic Curve Diffie-Hellman Primitive similar like latest golang SDK

Full Changelog: emmansun/gmsm@v0.13.8...v0.14.0

v0.13.8

Compare Source

Fix sm2 key exchange algorithm implementation bug.

This is also the last release that supports Golang 1.15.x!!!

v0.13.7

Compare Source

What's Changed

New Contributors

Full Changelog: emmansun/gmsm@v0.13.6...v0.13.7

v0.13.6

Compare Source

  1. Refactoring SM4 ASM code to reduce duplication.
  2. Improve SM4 CBC mode performance.
  3. Improve SM4 AESNI under ARM64 transpose matrix performance with VZIP1&VZIP2.
  4. SM4 gcmSm4Data method ignore incoming tag data, avoid misuse.
  5. Upgrade dependencies.

v0.13.5

Compare Source

  1. zuc: optimize key stream generation and EEA performance under ARM64.
  2. zuc: optimize EIA128 & EIA256 performance under both AMD64 and ARM64.
  3. [sync] crypto/x509: restrict CRL number to <=20 octets.
  4. Upgrade dependencies.

v0.13.4

Compare Source

  1. sm9: fix 32-bit GOARCH issue.
  2. zuc: optimize key stream generation and EEA performance under AMD64.

v0.13.3

Compare Source

  1. PKCS8: Merge pkcs8 from emmansun/pkcs8
  2. SM2: support key exchange
  3. SM2: sync generic implementation from emmansun/sm2fiat
  4. SM9: improve performance via finalExponentiation and mulLine
  5. SM9: key exchange refactoring
  6. ZUC: improve performance via lazy mod & other optimization

v0.13.2

Compare Source

  1. SM9 fix wrapkey/unwrapkey method name misspell issue
  2. SM9 support G1/G2 point compressed marshal/unmarshal
  3. SM9 support Key Exchange

v0.13.1

Compare Source

  1. Fix sm9 arm64 asm bug
  2. Support to build/test generic via build tags

v0.13.0

Compare Source

Support SM9 first release

v0.12.3

Compare Source

fix darwin (macOS) compile & test error with a temp solution

v0.12.2

Compare Source

  1. fix #​57
  2. Some refactoring of sm2

v0.12.1

Compare Source

Notable changes:

  1. x509 sync with SDK.
  2. Change SM2 curve p256Inverse to addchain generated version.
  3. Refactor marshal/unmarshal curve point implementation, used golang SDK as much as possible, removed util.go.
  4. Upgrade dependencies.

v0.12.0

Compare Source

What's Changed

  • SM3 SM4 A64 cryptographic instructions
  • ZUC implementation
  • x509 sync with SDK

Full Changelog: emmansun/gmsm@v0.11.5...v0.12.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.12.0 fix(deps): update module github.com/emmansun/gmsm to v0.12.1 May 20, 2022
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from 7c97fcb to 18bbec4 Compare May 20, 2022 01:50
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.12.1 fix(deps): update module github.com/emmansun/gmsm to v0.12.2 Jun 7, 2022
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from 18bbec4 to 64ef4fc Compare June 7, 2022 13:05
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.12.2 fix(deps): update module github.com/emmansun/gmsm to v0.12.3 Jun 9, 2022
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from 64ef4fc to f5dbfee Compare June 9, 2022 01:46
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.12.3 fix(deps): update module github.com/emmansun/gmsm to v0.13.0 Jun 13, 2022
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from f5dbfee to a777adf Compare June 13, 2022 12:47
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.13.0 fix(deps): update module github.com/emmansun/gmsm to v0.13.1 Jun 14, 2022
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch 2 times, most recently from d33f812 to 7759bdb Compare June 18, 2022 13:33
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.13.1 fix(deps): update module github.com/emmansun/gmsm to v0.13.2 Jun 18, 2022
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from 7759bdb to 0514744 Compare June 23, 2022 21:26
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.13.2 fix(deps): update module github.com/emmansun/gmsm to v0.13.3 Jun 23, 2022
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from 0514744 to 2d3bdc2 Compare September 25, 2022 13:54
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.13.3 fix(deps): update module github.com/emmansun/gmsm to v0.14.1 Sep 25, 2022
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from 2d3bdc2 to 3ecafbe Compare November 20, 2022 15:48
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.14.1 fix(deps): update module github.com/emmansun/gmsm to v0.15.3 Nov 20, 2022
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from 3ecafbe to ff2d373 Compare March 18, 2023 10:08
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.15.3 fix(deps): update module github.com/emmansun/gmsm to v0.16.0 Mar 18, 2023
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from ff2d373 to 7656abc Compare March 31, 2023 04:30
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.16.0 fix(deps): update module github.com/emmansun/gmsm to v0.17.0 Mar 31, 2023
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from 7656abc to 720444e Compare May 28, 2023 12:14
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.17.0 fix(deps): update module github.com/emmansun/gmsm to v0.17.2 May 28, 2023
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from 720444e to d9e214e Compare June 7, 2023 03:13
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.17.2 fix(deps): update module github.com/emmansun/gmsm to v0.17.3 Jun 7, 2023
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from d9e214e to 3c9dc7d Compare June 16, 2023 11:57
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.17.3 fix(deps): update module github.com/emmansun/gmsm to v0.17.4 Jun 16, 2023
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from 3c9dc7d to 30d4505 Compare June 21, 2023 11:27
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.17.4 fix(deps): update module github.com/emmansun/gmsm to v0.17.5 Jun 21, 2023
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.24.0 fix(deps): update module github.com/emmansun/gmsm to v0.24.1 Dec 15, 2023
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from 8256061 to bb4378d Compare January 9, 2024 02:13
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.24.1 fix(deps): update module github.com/emmansun/gmsm to v0.24.2 Jan 9, 2024
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from bb4378d to c7f1836 Compare January 20, 2024 07:04
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.24.2 fix(deps): update module github.com/emmansun/gmsm to v0.24.3 Jan 20, 2024
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from c7f1836 to 210130b Compare January 26, 2024 12:15
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.24.3 fix(deps): update module github.com/emmansun/gmsm to v0.25.0 Jan 26, 2024
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from 210130b to a9c7dee Compare February 27, 2024 01:21
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.25.0 fix(deps): update module github.com/emmansun/gmsm to v0.26.0 Feb 27, 2024
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from a9c7dee to 9481665 Compare March 7, 2024 00:56
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.26.0 fix(deps): update module github.com/emmansun/gmsm to v0.26.1 Mar 7, 2024
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from 9481665 to e99e2ca Compare May 24, 2024 01:10
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.26.1 fix(deps): update module github.com/emmansun/gmsm to v0.27.0 May 24, 2024
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from e99e2ca to 965bc2d Compare June 7, 2024 10:19
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.27.0 fix(deps): update module github.com/emmansun/gmsm to v0.27.1 Jun 7, 2024
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from 965bc2d to 617f837 Compare June 10, 2024 12:31
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.27.1 fix(deps): update module github.com/emmansun/gmsm to v0.27.2 Jun 10, 2024
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from 617f837 to a1df409 Compare June 14, 2024 11:15
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.27.2 fix(deps): update module github.com/emmansun/gmsm to v0.27.3 Jun 14, 2024
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from a1df409 to e5cc23d Compare June 28, 2024 11:04
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.27.3 fix(deps): update module github.com/emmansun/gmsm to v0.27.4 Jun 28, 2024
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from e5cc23d to cae50c1 Compare August 30, 2024 10:47
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.27.4 fix(deps): update module github.com/emmansun/gmsm to v0.28.0 Aug 30, 2024
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from cae50c1 to d01f427 Compare October 6, 2024 09:38
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.28.0 fix(deps): update module github.com/emmansun/gmsm to v0.29.0 Oct 6, 2024
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from d01f427 to d38c59e Compare October 11, 2024 01:15
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.29.0 fix(deps): update module github.com/emmansun/gmsm to v0.29.1 Oct 11, 2024
@renovate renovate bot force-pushed the renovate/github.com-emmansun-gmsm-0.x branch from d38c59e to 63e9f70 Compare November 8, 2024 11:00
@renovate renovate bot changed the title fix(deps): update module github.com/emmansun/gmsm to v0.29.1 fix(deps): update module github.com/emmansun/gmsm to v0.29.2 Nov 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants