Skip to content

Commit

Permalink
rebranding
Browse files Browse the repository at this point in the history
  • Loading branch information
bykovme committed Jun 20, 2022
1 parent 61ed6d1 commit d11a2dd
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=oxipass_bsencrypt&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=oxipass_bsencrypt)
[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=oxipass_bsencrypt&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=oxipass_bsencrypt)

# OxiPass Encrypt Library
# OxiPass Encryption Library

Encryption package with implementation of multiple standard encryption algorithms
2 changes: 1 addition & 1 deletion ciphers.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bsencrypt
package oxicrypt

// !! IMPORTANT !! Do not change this interface as the change will impact available implementations

Expand Down
2 changes: 1 addition & 1 deletion consts.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bsencrypt
package oxicrypt

// Rules for errors definition
// Example BSENCRPT00001: Password is not set
Expand Down
2 changes: 1 addition & 1 deletion general_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bsencrypt
package oxicrypt

import (
"math/rand"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/oxipass/bsencrypt
module github.com/oxipass/oxicrypt

go 1.18

Expand Down
2 changes: 1 addition & 1 deletion helpers.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bsencrypt
package oxicrypt

import (
"errors"
Expand Down
2 changes: 1 addition & 1 deletion impl_aes256.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bsencrypt
package oxicrypt

import (
"crypto/aes"
Expand Down
2 changes: 1 addition & 1 deletion impl_aes256_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bsencrypt
package oxicrypt

import "testing"

Expand Down
2 changes: 1 addition & 1 deletion impl_none.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bsencrypt
package oxicrypt

// No encryption consts
const cryptIDNONE = "7LD92APW"
Expand Down
2 changes: 1 addition & 1 deletion impl_none_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bsencrypt
package oxicrypt

import "testing"

Expand Down

0 comments on commit d11a2dd

Please sign in to comment.