Skip to content

Conversation

@kkoogqw
Copy link

@kkoogqw kkoogqw commented Oct 16, 2020

  • Description:
    Inspired by the function func permuteInitialBlock(block uint64) uint64 (crypto/des/block.go, line 119) , I converted the function c.subkeys[i] = unpack(permuteBlock(pc2Input, permutedChoice2[:])) call on line 243 of crypto/des/block.go into a bit operation method.

  • Performance improvement (based on arm64-arch):

name          old time/op    new time/op    delta
DesCBCDemo-2    8.38µs ± 0%    5.97µs ± 0%  -28.69%

name          old alloc/op   new alloc/op   delta
DesCBCDemo-2    1.08kB ± 0%    1.08kB ± 0%    0.00%

name          old allocs/op  new allocs/op  delta
DesCBCDemo-2      18.0 ± 0%      18.0 ± 0%    0.00%
  • Test demo:
func RunDesKeyGenDemo() error {
	key := []byte("abcdefgh")
	_, err := des.NewCipher(key)
	if err != nil {
		return err
	}
	return nil
}

func DesCBCEncrypt(rawData, key []byte) ([]byte, error) {
	block, err := des.NewCipher(key)
	if err != nil {
		return nil, err
	}
	blockSize := block.BlockSize()
	rawData = crypto.PKCS5Padding(rawData, blockSize)
	cipherText := make([]byte, blockSize+len(rawData))
	iv := cipherText[:blockSize]
	if _, err := io.ReadFull(rand.Reader, iv); err != nil {
		panic(err)
	}
	blockMode := cipher.NewCBCEncrypter(block, iv)
	blockMode.CryptBlocks(cipherText[blockSize:], rawData)
	return cipherText, nil
}

func DesCBCDecrypt(encryptData, key []byte) ([]byte, error) {
	block, err := des.NewCipher(key)
	if err != nil {
		return nil, err
	}
	blockSize := block.BlockSize()
	if len(encryptData) < blockSize {
		return nil, errors.New("cipher Text length error")
	}
	iv := encryptData[:blockSize]
	encryptData = encryptData[blockSize:]
	if len(encryptData)%blockSize != 0 {
		return nil, errors.New("ciphertext is not a multiple of the block size")
	}
	blockMode := cipher.NewCBCDecrypter(block, iv)
	rawData := make([]byte, len(encryptData))
	blockMode.CryptBlocks(rawData, encryptData)
	rawData = crypto.PKCS5UnPadding(rawData)
	return rawData, nil
}

@google-cla
Copy link

google-cla bot commented Oct 16, 2020

Thanks for your pull request. It looks like this may be your first contribution to a Google open source project (if not, look below for help). Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

📝 Please visit https://cla.developers.google.com/ to sign.

Once you've signed (or fixed any issues), please reply here with @googlebot I signed it! and we'll verify it.


What to do if you already signed the CLA

Individual signers
Corporate signers

ℹ️ Googlers: Go here for more info.

@google-cla google-cla bot added the cla: no Used by googlebot to label PRs as having an invalid CLA. The text of this label should not change. label Oct 16, 2020
@kkoogqw
Copy link
Author

kkoogqw commented Oct 16, 2020

@googlebot I signed it!

@google-cla google-cla bot added cla: yes Used by googlebot to label PRs as having a valid CLA. The text of this label should not change. and removed cla: no Used by googlebot to label PRs as having an invalid CLA. The text of this label should not change. labels Oct 16, 2020
@gopherbot
Copy link
Contributor

This PR (HEAD: 47fcaaa) has been imported to Gerrit for code review.

Please visit https://go-review.googlesource.com/c/go/+/262977 to see it.

Tip: You can toggle comments from me using the comments slash command (e.g. /comments off)
See the Wiki page for more info

@gopherbot
Copy link
Contributor

Message from Go Bot:

Patch Set 1:

Congratulations on opening your first change. Thank you for your contribution!

Next steps:
A maintainer will review your change and provide feedback. See
https://golang.org/doc/contribute.html#review for more info and tips to get your
patch through code review.

Most changes in the Go project go through a few rounds of revision. This can be
surprising to people new to the project. The careful, iterative review process
is our way of helping mentor contributors and ensuring that their contributions
have a lasting impact.

During May-July and Nov-Jan the Go project is in a code freeze, during which
little code gets reviewed or merged. If a reviewer responds with a comment like
R=go1.11 or adds a tag like "wait-release", it means that this CL will be
reviewed as part of the next development cycle. See https://golang.org/s/release
for more details.


Please don’t reply on this GitHub thread. Visit golang.org/cl/262977.
After addressing review feedback, remember to publish your drafts!

@heschi heschi closed this Dec 15, 2021
@andig
Copy link
Contributor

andig commented Dec 15, 2021

This still seems valuable to add?

@heschi
Copy link
Contributor

heschi commented Dec 15, 2021

I closed old PRs to reduce load on the Gerrit importer (#50197), sorry for the trouble. I'll reopen the CL and PR.

@heschi heschi reopened this Dec 15, 2021
@andig
Copy link
Contributor

andig commented Dec 15, 2021

/cc @rsc

@seankhliao seankhliao closed this Jun 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cla: yes Used by googlebot to label PRs as having a valid CLA. The text of this label should not change.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants