Giter VIP home page Giter VIP logo

ripe's Introduction

Minimal security tool with CLI and and C++ API for cryptography.

Apache 2.0

Ripe contains encryption API for two major cryptography methods, RSA and AES (Rijndael). Also contains Base64 encoding/decoding API and some helper functions to make data transferable (called prepareData). Binaries do not depend on third-party tools or libraries but development will require cryptography libraries installed in system in order to compile.

It is fully compatible with OpenSSL. See interoperability.sh

Build Status (Master) Build Status (Develop) Version Documentation License

Options

Option Name Description
--version Display version information
-g Generate key
-e Encrypt the data
-d Decrypt the data
-s Sign the data
-v Verify the signed data
--aes Generate AES key (requires -g)
--key Symmetric key for encryption / decryption
--in-key Symmetric key for encryption / decryption file path
--iv Initializaion vector
--rsa Use RSA encryption/decryption
--zlib ZLib compression/decompression
--raw Raw output for rsa encrypted data
--base64 Tells ripe the data needs to be decoded before decryption (this can be used for decoding base64)
--hex Tells ripe the data is hex string
--clean (Only applicable when --base64 data provided) Tells ripe to clean the data before processing
--signature Signature for verifying the data
--in Input file. You can also pipe in the data. In that case you do not have to provide this parameter
--out Tells ripe to store encrypted data in specified file. (Outputs IV in console)
--length Specify key length
--secret Secret key for encrypted private key (RSA only)
--sha256 Generate SHA-256 hash
--hash Generate SHA-256 hash
--sha512 Generate SHA-512 hash

Getting Started

Dependencies

These are the requirements to build Ripe binaries.

Get Code

You can either download code from master branch or clone it using git:

git clone [email protected]:abumq/ripe.git

Build

Residue uses the CMake toolchains to create makefiles. Steps to build Ripe:

mkdir build
cd build
cmake ..
## Following line requires c++11 compiler and easylogging++
cmake -Dtest=ON ..
make

Please consider running unit test before you move on

make test

The compilation process creates executable (ripe) as well as shared libraries in build directory. You can install it in system-wide directory using:

make install

If the default path (/usr/local) is not where you want things installed, then set the CMAKE_INSTALL_PREFIX option when running cmake. e.g,

cmake .. -DCMAKE_INSTALL_PREFIX=/usr/bin

Static Linking

By default ripe builds as shared library, you can pass BUILD_SHARED_LIBS option in cmake to build static library.

For example

cmake -DBUILD_SHARED_LIBS=OFF ..
make

Windows

You can do cmake -Ddll_export=ON ... to export symbols and cmake -Ddll=ON ... to import if needed

If build fails...

Make sure you have read minimum requirements. You can install required Crypto++ v5.6.5 (with Pem Pack) using following commands

curl -O https://raw.githubusercontent.com/abumq/abumq.github.io/master/downloads/cryptocpp.tar.gz
tar xf cryptocpp.tar.gz
cd cryptopp-CRYPTOPP_5_6_5
curl -O https://raw.githubusercontent.com/abumq/abumq.github.io/master/downloads/pem_pack.zip
unzip pem_pack.zip
cmake .
make
make install

and Google Testing Library using

git clone https://github.com/google/googletest.git -b v1.13.0
cd googletest
mkdir build
cd build
cmake .. -DBUILD_GMOCK=OFF
make

and Easylogging++ using

curl -o easylogging++.zip https://github.com/abumq/easyloggingpp/archive/master.zip
unzip easylogging++.zip
cd easyloggingpp-master/
cmake -Dtest=ON .
make
./easyloggingpp-unit-tests
make install

If make install fails because of permission try to run it as super-user sudo make install

Examples

Encryption (AES)

Following command will encrypt sample.json file to be ready to send to the server.

echo "plain text" | ripe -e --key B1C8BFB9DA2D4FB054FE73047AE700BC

You can specify binary file as destination that will save only encrypted data, e.g,

echo "plain text" | ripe -e --key B1C8BFB9DA2D4FB054FE73047AE700BC --out sample.enc

Above command will provide you with IV that you can use to decrypt

Please note: If you do not provide --out, the output will base64 and it will have four parts. {LENGTH}:{IV}:{Client_ID}:{Base64_Encoded_Encrypted_Data}.

Decryption (AES)

Following command will decrypt hkz20HKQA491wZqbEctxCA== (plain text) that was supposedly encrypted using same key and init vector.

echo "hkz20HKQA491wZqbEctxCA==" | ripe -d --key B1C8BFB9DA2D4FB054FE73047AE700BC --iv 88505d29e8f56bbd7c9e1408f4f42240 --base64

You can also provide filename, e.g,

ripe -d --key B1C8BFB9DA2D4FB054FE73047AE700BC --in sample.enc --iv 88505d29e8f56bbd7c9e1408f4f42240

OR

echo 88505d29e8f56bbd7c9e1408f4f42240:hkz20HKQA491wZqbEctxCA== | ripe -d --key B1C8BFB9DA2D4FB054FE73047AE700BC --base64

Generate AES Key

Following command will generate 128-bit AES key

ripe -g --aes 256

Alternatively you can do

ripe -g --aes --length 256

Valid keys sizes: 128-bit, 192-bit, 256-bit

Generate RSA Key

Following command will produce random RSA key pair

ripe -g --rsa --out-private private.pem --out-public public.pem

Alternatively you can use

ripe -g --rsa

This will give you two base64 strings with : as separator. First encoded text is base64 of newly generated private key and second being newly generated corresponding public key.

If you wish to generate private RSA key, you can use --secret parameter, e.g,

ripe -g --rsa --out-private private.pem --out-public public.pem --secret ppks

Encryption (RSA)

You can encrypt the data using public key and decrypt with a private key

echo 'plain text' | ripe -e --rsa --in-key public.pem

You can also use --out /tmp/output.enc to save it to /tmp/output.enc file

You can also add --raw option to output raw data instead of base64 encoded

Ripe uses PKCS #1 v1.5 padding scheme

Decryption (RSA)

ripe -d --rsa --in-key private.pem --in /tmp/output.enc --base64

Please note, decryption (RSA) is unstable at the moment, you may use following alternative command until it's fixed

cat /tmp/output.enc | openssl rsautl -decrypt -inkey private.pem --base64

Ripe uses PKCS #1 v1.5 padding scheme

Encrypted Keys

If you have an RSA key that is encrypted with pass phrase, let's say

openssl genrsa -des3 -out private.pem 2048

extract public key: openssl rsa -in private.pem -outform PEM -pubout -out public.pem

You can use --secret to decrypt it

for example

Encrypt:

echo ff | ripe -e --rsa --in-key public.pem

Decrypt (pass phrase we chose was ppks):

ripe -d --rsa --in-key private.pem --base64 --secret ppks

Failing to provide --secret option will give you error:

ERROR: PEM_Load: RSA private key is encrypted

Signing

echo "my signed data" | ripe -s --rsa --in-key private.pem

Verify

echo "my signed data" | ripe -v --rsa --in-key public.pem --signature SIGNATURE

Base64 Encoding

You can use following commands to encode raw data to base64 encoding

echo 'plain text' | ripe -e --base64

Base64 Decoding

In order to decode you may use -d option instead

echo 'cGxhaW4gdGV4dAo=' | ripe -d --base64

Hex Encoding

You can use following to encode data to hex encoded string

echo 'plain text' | ripe -e --hex

Hex Decoding

Decoding hex can be done using -d option

echo 706c61696e2074657874 | ripe -d --hex

ZLib Compression

Compression using zlib can be done using -e option

echo abcd | ripe -e --zlib

You can provide --base64 to see base64 output e.g,

echo abcd | ripe -e --zlib --base64

Same with --hex (or both --base64 and --hex - in this case you will get base64 encoding of hex output)

ZLib Decompression

Decompression using zlib can be done using -d option

echo eNpLTEpOAQAD2AGL | ripe -d --zlib --base64

License

Copyright 2017-present @abumq (Majid Q.)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

ripe's People

Contributors

abumq avatar vkresch avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

ripe's Issues

Linking issue

Hi,

When I create the 'licensepp' library directly as a shared library, it works fine. However, when I attempt to use 'add_subdirectory' in the CMakeLists.txt file for the test application and make it static, it shows this error. I've tried several custom alternatives to ensure it works, but it still doesn't.

...
/usr/bin/ld: ripe/CMakeFiles/ripe-bin.dir/lib/Ripe.cc.o: in function `CryptoPP::PKCS1v15_SignatureMessageEncodingMethod::PKCS1v15_SignatureMessageEncodingMethod()':
/home/aa6my/_dev/cmake-test/build/cryptopp/cryptopp/pkcspad.h:87: undefined reference to `vtable for CryptoPP::PKCS1v15_SignatureMessageEncodingMethod'
/usr/bin/ld: ripe/CMakeFiles/ripe-bin.dir/lib/Ripe.cc.o: in function `CryptoPP::PKCS_EncryptionPaddingScheme::PKCS_EncryptionPaddingScheme()':
/home/aa6my/_dev/cmake-test/build/cryptopp/cryptopp/pkcspad.h:23: undefined reference to `vtable for CryptoPP::PKCS_EncryptionPaddingScheme'
/usr/bin/ld: ripe/CMakeFiles/ripe-bin.dir/lib/Ripe.cc.o:(.data.rel.ro._ZTVN8CryptoPP25PK_MessageAccumulatorImplINS_4SHA1EEE[_ZTVN8CryptoPP25PK_MessageAccumulatorImplINS_4SHA1EEE]+0x70): undefined reference to `CryptoPP::HashTransformation::OptimalDataAlignment() const'
/usr/bin/ld: ripe/CMakeFiles/ripe-bin.dir/lib/Ripe.cc.o:(.data.rel.ro._ZTVN8CryptoPP25PK_MessageAccumulatorImplINS_4SHA1EEE[_ZTVN8CryptoPP25PK_MessageAccumulatorImplINS_4SHA1EEE]+0xa0): undefined reference to `CryptoPP::HashTransformation::TruncatedVerify(unsigned char const*, unsigned long)'
/usr/bin/ld: ripe/CMakeFiles/ripe-bin.dir/lib/Ripe.cc.o: in function `CryptoPP::SHA1::SHA1(CryptoPP::SHA1 const&)':
/home/aa6my/_dev/cmake-test/build/cryptopp/cryptopp/sha.h:26: undefined reference to `vtable for CryptoPP::SHA1'
/usr/bin/ld: ripe/CMakeFiles/ripe-bin.dir/lib/Ripe.cc.o: in function `CryptoPP::IteratedHashWithStaticTransform<unsigned int, CryptoPP::EnumToType<CryptoPP::ByteOrder, 1>, 64u, 20u, CryptoPP::SHA1, 0u, false>::HashEndianCorrectedBlock(unsigned int const*)':
/home/aa6my/_dev/cmake-test/build/cryptopp/cryptopp/iterhash.h:196: undefined reference to `CryptoPP::SHA1::Transform(unsigned int*, unsigned int const*)'
/usr/bin/ld: warning: creating DT_TEXTREL in a PIE
collect2: error: ld returned 1 exit status
[184/187] Linking CXX shared library ripe/libripe.so.4.2.2
ninja: build stopped: subcommand failed.

Dependencies

CMakeLists.txt

cmake_minimum_required(VERSION 3.21)

project(hello_world)

list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules")

# Cryptopp
add_subdirectory(cryptopp)
set(CryptoPP_USE_STATIC_LIBS ON)
set(CRYPTOPP_ROOT_DIR "${CMAKE_BINARY_DIR}/cryptopp/cryptopp")
set(CRYPTOPP_INCLUDE_DIR "${CMAKE_BINARY_DIR}/cryptopp")
set(CRYPTOPP_LIBRARY "${CMAKE_BINARY_DIR}/cryptopp/cryptopp")
find_package(CryptoPP REQUIRED)

add_custom_target(custom_lib
    DEPENDS ${CMAKE_BINARY_DIR}/cryptopp/cryptopp/libcryptopp.a
    COMMENT "Building myLib"
)

# Ripe
add_subdirectory(ripe)
set(RIPE_USE_STATIC_LIBS ON)
set(RIPE_INCLUDE_DIR "${CMAKE_SOURCE_DIR}/ripe")
set(RIPE_LIBRARY "${CMAKE_SOURCE_DIR}/ripe")

# Include Crypto++ headers for the 'ripe' target
target_include_directories(ripe PRIVATE ${CRYPTOPP_INCLUDE_DIR})

# Create the 'app' executable
add_executable(app main.cpp)

# Link the 'app' target with the 'ripe' library
target_link_libraries(app ripe)

# Include directories for 'app' target
target_include_directories(app PRIVATE ${CRYPTOPP_INCLUDE_DIR})

add_dependencies(app custom_lib)

e.g. - shared that works for licensepp with ripe
Screenshot from 2023-09-11 13-56-25

Move away from openssl

Implementation using openssl is causing grief with memory leaks (thanks to Valgrind)

We will be moving to Crypto++ for v2.0.0 onwards as it's C++ API makes it easy to integrate yet portable to various platforms.

This is major change and will definitely break existing usages (this is why we're releasing major version)

ripe.lib not generated

Hi Majid Q,

I have successfully compiled #40 on Ubuntu, but I encountered an issue with Windows. As far as I know, for the static build, the file extension should be *.lib.

Highlight
ninja: error: 'cryptopp-cmake/cryptopp/Debug/cryptopp.lib', needed by 'ripe/ripe.dll', missing and no known rule to make it

CMakeLists.txt

cmake_minimum_required(VERSION 3.21)

project(hello_library)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules")

############################################################
# Create a library
############################################################

# Cryptopp
add_subdirectory(cryptopp-cmake)
set(CryptoPP_USE_STATIC_LIBS ON)
set(CRYPTOPP_ROOT_DIR "${CMAKE_BINARY_DIR}/cryptopp-cmake")
set(CRYPTOPP_LIBRARY "${CMAKE_BINARY_DIR}/cryptopp-cmake")
find_package(CryptoPP REQUIRED)  # Check if this package is correctly installed and found.

if(UNIX)
    set(CRYPTOPP_LIBRARIES_ENV ${CRYPTOPP_LIBRARIES}/cryptopp/libcryptopp.a)  # This will be set for Linux and other Unix-like systems
elseif(WIN32)
    set(CRYPTOPP_LIBRARIES_ENV ${CRYPTOPP_LIBRARIES}/cryptopp/Debug/cryptopp.lib)  # This will be set for Windows
endif()

# Ripe
add_subdirectory(ripe)  # Build the Ripe library first
set(RIPE_USE_STATIC_LIBS ON)
set(LIB_RIPE_SOURCE_FILES "${CMAKE_SOURCE_DIR}/ripe")
set(RIPE_INCLUDE_DIR "${CMAKE_SOURCE_DIR}/ripe")
set(RIPE_LIBRARY "${CMAKE_BINARY_DIR}/ripe")  # Point to the build directory of Ripe
find_package(Ripe REQUIRED)  # Check if this package is correctly installed and found.

if(UNIX)
    set(RIPE_LIBRARY_ENV ${RIPE_LIBRARY}/libripe.so)  # This will be set for Linux and other Unix-like systems
elseif(WIN32)
    set(RIPE_LIBRARY_ENV ${RIPE_LIBRARY}/Debug/ripe.lib)  # This will be set for Windows
endif()

target_link_libraries(ripe
    ${CRYPTOPP_LIBRARIES_ENV}
    ${ZLIB_LIBRARIES}
)

target_link_libraries (ripe-bin
    ${CRYPTOPP_LIBRARIES_ENV}
    ${ZLIB_LIBRARIES}
)

# Licenspp
add_subdirectory(licensepp)  # Build the Licenspp library first

target_include_directories(licensepp-lib
    PRIVATE
    ${CMAKE_SOURCE_DIR}/licensepp  # Add the directory containing json-object.h
    ${CMAKE_SOURCE_DIR}/licensepp/include
    ${RIPE_INCLUDE_DIR}/include
    # Other include directories if needed
)

target_link_libraries(licensepp-lib
    ${CRYPTOPP_LIBRARIES_ENV}
    ${RIPE_LIBRARY_ENV}
)

# target_link_libraries(licensepp-lib
#     ${RIPE_LIBRARY_ENV}
# )

# Add your main project executable or library
add_executable(hello_library main.cpp)  # Replace with your target name

Log

rm -rf build && mkdir build && cmake -B build -G Ninja && cmake --build build/-- The C compiler identification is Clang 15.0.6 with GNU-like command-line
-- The CXX compiler identification is Clang 15.0.6 with GNU-like command-line
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: C:/Program Files/LLVM/bin/clang.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Program Files/LLVM/bin/clang++.exe - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- The ASM compiler identification is Clang with GNU-like command-line
-- Found assembler: C:/Program Files/LLVM/bin/clang.exe
=> Project : cryptopp-cmake v8.8.0
-- Found Git: C:/Program Files/Git/mingw64/bin/git.exe (found version "2.38.1.windows.1")
-- Crypto++ auto fetched at: C:/Users/aa6my/_dev/cmake-test/build/cryptopp-cmake/cryptopp
-- Using branch licensing_mechanism for tests
-- Adding unit test: disable-feature
-- Adding unit test: include-prefix
-- Adding unit test: no-install
-- Adding unit test: standard-cpm
-- Adding install integration test: int-install-default
-- Adding install integration test: int-install-prefix
=> Module : cryptopp
-- [cryptopp] CMake version 3.25.1
-- [cryptopp] System Windows
-- [cryptopp] Processor AMD64
-- [cryptopp] CMAKE_HOST_SYSTEM_PROCESSOR : AMD64
-- [cryptopp]      CMAKE_SYSTEM_PROCESSOR : AMD64
-- [cryptopp] Target architecture detected as: x86_64 -> CRYPTOPP_AMD64
-- [cryptopp] Performing Test CRYPTOPP_HAVE_SSE2
-- [cryptopp] Performing Test CRYPTOPP_HAVE_SSE2 - Success
-- [cryptopp] Performing Test CRYPTOPP_HAVE_SSE3
-- [cryptopp] Performing Test CRYPTOPP_HAVE_SSE3 - Success
-- [cryptopp] Performing Test CRYPTOPP_HAVE_SSSE3
-- [cryptopp] Performing Test CRYPTOPP_HAVE_SSSE3 - Success
-- [cryptopp] Performing Test CRYPTOPP_HAVE_SSE41
-- [cryptopp] Performing Test CRYPTOPP_HAVE_SSE41 - Success
-- [cryptopp] Performing Test CRYPTOPP_HAVE_SSE42
-- [cryptopp] Performing Test CRYPTOPP_HAVE_SSE42 - Success
-- [cryptopp] Performing Test CRYPTOPP_HAVE_CLMUL
-- [cryptopp] Performing Test CRYPTOPP_HAVE_CLMUL - Success
-- [cryptopp] Performing Test CRYPTOPP_HAVE_AESNI
-- [cryptopp] Performing Test CRYPTOPP_HAVE_AESNI - Success
-- [cryptopp] Performing Test CRYPTOPP_HAVE_AVX
-- [cryptopp] Performing Test CRYPTOPP_HAVE_AVX - Success
-- [cryptopp] Performing Test CRYPTOPP_HAVE_AVX2
-- [cryptopp] Performing Test CRYPTOPP_HAVE_AVX2 - Success
-- [cryptopp] Performing Test CRYPTOPP_HAVE_SHANI
-- [cryptopp] Performing Test CRYPTOPP_HAVE_SHANI - Success
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - no
-- Found Threads: TRUE
-- [cryptopp] Generating cmake package config files
-- [cryptopp] Generating pkgconfig files
-- [cryptopp] Platform: x86_64
-- [cryptopp] Compiler definitions:
-- [cryptopp] Compiler options:
-- [cryptopp] Build type: Debug
-- Static linking to Crypto++
-- Found CryptoPP: C:/Users/aa6my/_dev/cmake-test/build/cryptopp-cmake (found version "..")
-- Static linking to Crypto++
-- Crypto++ binary: C:/Users/aa6my/_dev/cmake-test/build/cryptopp-cmake
-- Found ZLIB: C:/Program Files/zlib/lib/zlibstat.lib (found version "1.2.3")
-- Looking for C++ include attr/xattr.h
-- Looking for C++ include attr/xattr.h - not found
-- Looking for C++ include sys/xattr.h
-- Looking for C++ include sys/xattr.h - not found
-- Ripe: Static linking
-- Ripe: Include: C:/Users/aa6my/_dev/cmake-test/ripe, Binary: C:/Users/aa6my/_dev/cmake-test/build/ripe
-- Found Ripe: C:/Users/aa6my/_dev/cmake-test/ripe
-- Static linking to Crypto++
-- Crypto++ binary: C:/Users/aa6my/_dev/cmake-test/build/cryptopp-cmake
-- Ripe: Dynamic linking
-- Ripe: Include: C:/Users/aa6my/_dev/cmake-test/ripe, Binary: C:/Users/aa6my/_dev/cmake-test/build/ripe
-- Configuring done
CMake Warning at ripe/CMakeLists.txt:95 (target_link_libraries):
  Target "ripe" requests linking to directory
  "C:/Users/aa6my/_dev/cmake-test/build/cryptopp-cmake".  Targets
  may link only to libraries.  CMake is dropping the item.


CMake Warning at ripe/CMakeLists.txt:110 (target_link_libraries):
  Target "ripe-bin" requests linking to directory
  "C:/Users/aa6my/_dev/cmake-test/build/cryptopp-cmake".  Targets
  may link only to libraries.  CMake is dropping the item.


CMake Warning at licensepp/CMakeLists.txt:88 (target_link_libraries):
  Target "licensepp-lib" requests linking to directory
  "C:/Users/aa6my/_dev/cmake-test/build/cryptopp-cmake".  Targets
  may link only to libraries.  CMake is dropping the item.


CMake Warning at licensepp/CMakeLists.txt:88 (target_link_libraries):
  Target "licensepp-lib" requests linking to directory
  "C:/Users/aa6my/_dev/cmake-test/build/ripe".  Targets may link
  only to libraries.  CMake is dropping the item.


-- Generating done
-- Build files have been written to: C:/Users/aa6my/_dev/cmake-test/build
ninja: error: 'cryptopp-cmake/cryptopp/Debug/cryptopp.lib', needed by 'ripe/ripe.dll', missing and no known rule to make it

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.