|
|
|
|
|
RandomCryptoBuffer (Function) In french: HasardCryptoBuffer Returns a buffer to the specified size filled with random data, that can be used with the cryptographic technologies. Note: The returned buffer can be used as a key for encryption functions, for example.
CléHasard is Buffer = RandomCryptoBuffer(32)
MessageCrypé is Buffer = EncryptStandard(MonMessage, CléHasard)
Syntax
<Result> = RandomCryptoBuffer([<Buffer size>])
<Result>: Buffer - Buffer filled with random data,
- Empty buffer if an error occurs.
<Buffer size>: Optional integer Size (in number of bytes) of buffer to initialize (32 by default). Remarks - The first call to the function can be quite long (one second or more if the size of buffer to initialize is important). Indeed, initializing the random mechanism is very complex.
- InitRandom has no effect on the result of RandomCryptoBuffer.
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|