Hi Data Access

Just trying to implement some encryption using the 1.2.0 version of the library in DF 23.0.

Ran into a problem with the instructions in the PDF, page 16:

Code:
Procedure Initialize
    Integer iKeyLen
    UChar[] ucaKey

    // generate a new key
    Get MinimumKeyLength of ghoSecurity (piEncryptImplementation(Self)) ;
                                   to iKeyLen
    Get RandomData of ghoSecurity iKeyLen to ucaKey
    Forward Send Initialize (&ucaKey)
End_Procedure

Send Initialize
I think that should probably be MinimumKeyBytes.

Mike