Giter Site home page Giter Site logo

kelvinchin12070811 / adsi Goto Github PK

View Code? Open in Web Editor NEW
1.0 2.0 0.0 1.19 MB

An experiment project which sign digital artwork with cryptography method

License: Mozilla Public License 2.0

CMake 3.72% C++ 95.96% Python 0.32%
fyp cryptography digital-watermarking final-year-project cpp cpp17 qt5 cryptopp qt5-widgets

adsi's Introduction

Artwork Digital Signature Identifier

Artwork Digital Signature Identifier is an experiment that try to sign a digital artwork with Asynmetric Encryption. This project is prepared for Final Year Project for SEGi University

System Requirements Specification Form: form

FYP Report: report

Installation

The project is configured with cmake and vcpkg.

Required library

Setup Qt

Get Qt 5.15.2 from the Official Qt website

Setup vcpkg and install required libraries

Note: Install vcpkg require git installed.

  1. install vcpkg with the following command.

    PowerShell

    git clone https://github.com/microsoft/vcpkg.git
    Set-Location vcpkg
    ./bootstrap-vcpkg
    ./vcpkg integrate install
    

    cmd

    git clone https://github.com/microsoft/vcpkg.git
    cd vcpkg
    ./bootstrap-vcpkg
    ./vcpkg integrate install
    
  2. Install required library

    ./vcpkg install cryptopp boost sqlte3 sqlite-orm ecm
    
  3. kf5widgetsaddons require additional steps

    Note: If install Qt directly from vcpkg will not require this steps, install them directly with vcpkg.

    1. Open ./vcpkg/ports/kf5widgetsaddons/CONTROL

    2. make change of the following line

      Build-Depends: ecm, qt5-base, qt5-tools
      

      to

      Build-Depends: ecm
      
    3. install kf5widgetsaddons as following

      ./vcpkg install kf5widgetsaddons --editable
      

      The build should failed as no Qt library found.

    4. Head to ./vcpkg/buildtrees/kf5widgetsaddons and delete all files instead of src folder

    5. Open ./src/{version}/CMakeLists.txt and add the following line right after the cmake_minimum_required line

      list(APPEND CMAKE_PREFIX_PATH "{Path to qt toolkit}")
      

      example

      list(APPEND CMAKE_PREFIX_PATH "C:/Qt/5.15.2/msvc2019_64")
      
    6. Run ./vcpkg install kf5widgetsaddons --editable again, might need to change REQUIRED_QT_VERSION to match Qt installation version at CMakeLists.txt as previous steps.

  4. Setup vcpkg for cmake in IDE of choice, take a look at vcpkg official documentation

License

MPL 2.0

adsi's People

Contributors

kelvinchin12070811 avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.