Skip to content

Releases: lemon-mint/vbox

v1.3.2 Security patch

24 Aug 14:13
Compare
Choose a tag to compare

What's Changed

  • Configure Renovate by @renovate in #1
  • Update module go to 1.18 by @renovate in #3
  • Update golang.org/x/crypto digest to 630584e by @renovate in #2
  • Fix Panic on OpenOverWrite

New Contributors

Full Changelog: v1.3.1...v1.3.2

v1.3.1 upgraded golang.org/x/crypto

15 Mar 14:27
Compare
Choose a tag to compare
upgraded golang.org/x/sys

v1.3.0 New API Base64Seal, Base64Open

15 Mar 14:19
Compare
Choose a tag to compare
// Base64Seal Seal and encode the data to base64 raw URL encoding.
func (b *BlackBox) Base64Seal(src []byte) string

// Base64Open decode the data from base64 raw URL encoding and Open it.
func (b *BlackBox) Base64Open(src string) ([]byte, bool)

v1.2.0 Replace Hash Function to Blake2b

10 Dec 03:47
Compare
Choose a tag to compare

v1.1.0 Performance Optimization

19 Oct 09:02
Compare
Choose a tag to compare
// OpenOverWrite overwrites the input slice with the decrypted data.
// Better Performance than Open. But the input slice will be overwritten.
func (b *BlackBox) OpenOverWrite(src []byte) ([]byte, bool)

v1.0.2 Update Benchmark

18 Oct 08:03
Compare
Choose a tag to compare
Benchmark Open()

v1.0.1 Update README

18 Oct 07:47
Compare
Choose a tag to compare
Update Readme

v1.0.0 Add Tests

18 Oct 07:43
Compare
Choose a tag to compare
Add Test