Skip to content

Commit

Permalink
Merge pull request #95 from marcelpetrick/patch-1
Browse files Browse the repository at this point in the history
README.md: fixed several glitches
  • Loading branch information
EndrII authored May 17, 2022
2 parents 2f8ea99 + 5b66a73 commit 94d2ea7
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The current implementation supports the following key sizes:
* Signature and verification of the message signature.

### AES
Aes implementation was borrowed from [bricke](https://github.com/bricke/Qt-AES), because it fulfills the goals of this library.
AES implementation was borrowed from [bricke](https://github.com/bricke/Qt-AES), because it fulfills the goals of this library.

Individual thanks [bricke](https://github.com/bricke) for implementing the AES encryption class.

Expand Down Expand Up @@ -113,7 +113,7 @@ SUBDIRS += \

#### Note

By Default QtBigInt makes as a static library. If you want to create a shared library just add the BUILD_SHARED_LIBS into your main CMakeLists.txt file. Example :
By Default Qt-Secret makes as a static library. If you want to create a shared library just add the BUILD_SHARED_LIBS into your main CMakeLists.txt file. Example :

```cmake
set(BUILD_SHARED_LIBS ON)
Expand Down Expand Up @@ -166,8 +166,6 @@ int main() {
qInfo() << "Success!";
}
}


```

### Signature and verification of the message signature.
Expand Down Expand Up @@ -199,7 +197,6 @@ int main() {
qInfo() <<"success!";
}
}

```

## AES
Expand Down Expand Up @@ -259,7 +256,4 @@ QByteArray encrypted = QAESEncryption::Crypt(QAESEncryption::AES_256, QAESEncryp
//...
// Removal of Padding via Static function
QString decodedString = QString(QAESEncryption::RemovePadding(decodeText));

```

0 comments on commit 94d2ea7

Please sign in to comment.