From da06bf1409b89885d8478d1b9adce46ccba290f6 Mon Sep 17 00:00:00 2001 From: Michael Hohl Date: Tue, 15 Apr 2014 19:25:59 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c06659c..99c5e8f 100644 --- a/README.md +++ b/README.md @@ -43,13 +43,14 @@ MIHCrypto requires Xcode 4 and above, targeting either iOS 5.0 and above, or Mac As already mentioned OpenSSL is very powerful and large project so this library doesn't support all functionallity of it yet and new functions are added as needed. At the moment following cryptographic approaches are supported: - AES (block cipher) + - MD5 (hash algorithm) - RSA (public-key cryptography) - - SHA (hash algorithm) + - SHA, SHA256, SHA384, SHA512 (hash algorithm) Following approaches are in progress and may get published shortly: - ECC (public-key cryptography) - - MD5 (hash algorithm) + - DES (block cipher) Anybody is welcome to add additional support for other approaches. From d12adfb3f112646e78b980866bda41cb39d7b52c Mon Sep 17 00:00:00 2001 From: Michael Hohl Date: Tue, 15 Apr 2014 19:34:29 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 99c5e8f..43a2b53 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,9 @@ [![Build Status](https://travis-ci.org/hohl/MIHCrypto.svg?branch=master)](https://travis-ci.org/hohl/MIHCrypto) -[OpenSSL](https://www.openssl.org/) is the most powerful SSL and TLS library available which wraps a full cryptographic library. The library is written in pure C and due to its endless size and not-so-well-designed it is very hard for beginners to step into it. +[OpenSSL](https://www.openssl.org/) is the most powerful SSL and TLS library available which wraps a full cryptographic library. The library is written in pure C and due to its endless size and not-so-well-designed C interface it is very hard for beginners to step into it. -The aim of the MIHCrypto library is to provide an object-oriented interface which allows developers to write simple and clean code by still using the power of the OpenSSL library. As already mentioned OpenSSL is a very large library so (yet) not the whole library is wrapped by MIHCrypto. Since [I](http://www.michaelhohl.net/) am developing the library because personal needs focus of the functionallity is on modern cryptographic apporaches, but everybody is welcome to contrbute other parts to the library. +The aim of the MIHCrypto library is to provide an object-oriented interface which allows developers to write simple and clean code by still using the power of the OpenSSL `libCrypto` library. OpenSSL is a very large library so (yet) not the whole library is wrapped by MIHCrypto. Since [I](http://www.michaelhohl.net/) am developing the library because personal needs focus of the functionallity is on modern cryptographic apporaches, but everybody is welcome to contrbute other parts to the library. ## How To Get Started