Metadata-Version: 2.2
Name: robotframework-hashlibrary
Version: 0.3
Summary: Robot Framework library that generates hashes based on the given input
Author: David Italiander
Author-email: david.italiander@gmail.com
Classifier: Programming Language :: Python
Classifier: Framework :: Robot Framework
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: robotframework
Requires-Dist: pytest
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: summary


# HashLibrary for Robot Framework®

HashLibrary is an  library for Robot Framework.  
It generates hashes based on the given inputs.

---
## Installation
If you already have Python >= 3.8 with pip installed, you can simply run:  
`pip install robotframework-hashlibrary`

---
## Getting started
Some examples how to import and use the library.

``` robotframework
*** Settings ***
Library            HashLibrary

*** Variables ***
${TEST_STRING}    david

*** Test Cases ***
Generate hash for string
    ${hash}    Get Base64 Hash From String  ${TEST_STRING}

```

