Files
harbour-core/harbour/contrib/hbssl/tests/encode.prg
Viktor Szakats 81c9b0506c 2010-06-04 15:21 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/*
    * Deleted 'www.' from harbour-project.org website name.
      (www.harbour-project.org -> harbour-project.org)
2010-06-04 13:32:23 +00:00

50 lines
853 B
Plaintext

/*
* $Id$
*/
/*
* Copyright 2009 Viktor Szakats (harbour.01 syenar.hu)
* www - http://harbour-project.org
*/
#include "simpleio.ch"
#include "hbssl.ch"
PROCEDURE Main()
LOCAL ctx
LOCAL result
LOCAL encrypted
LOCAL decrypted
LOCAL cKey := "key"
OpenSSL_add_all_ciphers()
ctx := hb_EVP_ENCODE_CTX_create()
EVP_EncodeInit( ctx )
encrypted := ""
result := ""
EVP_EncodeUpdate( ctx, @result, "sample text" )
encrypted += result
EVP_EncodeFinal( ctx, @result )
encrypted += result
? "ENCRYTPTED", ">" + encrypted + "<"
ctx := hb_EVP_ENCODE_CTX_create()
EVP_DecodeInit( ctx )
decrypted := ""
result := ""
EVP_DecodeUpdate( ctx, @result, encrypted )
decrypted += result
EVP_DecodeFinal( ctx, @result )
decrypted += result
? "DECRYTPTED", ">" + decrypted + "<"
RETURN