Metodo System::Security::Cryptography::HashAlgorithm::ComputeHash
Contenuti
[
Nascondere
]HashAlgorithm::ComputeHash(const ArrayPtr<uint8_t>&) method
Esegue l’hash del buffer.
ArrayPtr<uint8_t> System::Security::Cryptography::HashAlgorithm::ComputeHash(const ArrayPtr<uint8_t> &buffer)
| Parametro | Tipo | Descrizione |
|---|---|---|
| buffer | const ArrayPtr<uint8_t>& | Buffer di origine. |
ReturnValue
Valore hash calcolato.
Vedi anche
- Typedef ArrayPtr
- Class HashAlgorithm
- Namespace System::Security::Cryptography
- Library Aspose.Font for C++
HashAlgorithm::ComputeHash(const ArrayPtr<uint8_t>&, int, int) method
Esegue l’hash di una porzione del buffer.
ArrayPtr<uint8_t> System::Security::Cryptography::HashAlgorithm::ComputeHash(const ArrayPtr<uint8_t> &buffer, int offset, int count)
| Parametro | Tipo | Descrizione |
|---|---|---|
| buffer | const ArrayPtr<uint8_t>& | Buffer di origine. |
| offset | int | Offset nel buffer di origine. |
| count | int | Numero di byte da utilizzare dal buffer di origine. |
ReturnValue
Valore hash calcolato.
Vedi anche
- Typedef ArrayPtr
- Class HashAlgorithm
- Namespace System::Security::Cryptography
- Library Aspose.Font for C++
HashAlgorithm::ComputeHash(SharedPtr<IO::Stream> const&) method
Legge lo stream fino alla fine e calcola l’hash per i dati letti.
ArrayPtr<uint8_t> System::Security::Cryptography::HashAlgorithm::ComputeHash(SharedPtr<IO::Stream> const &inputStream)
| Parametro | Tipo | Descrizione |
|---|---|---|
| inputStream | SharedPtr<IO::Stream> const& | Stream da cui leggere i dati. |
ReturnValue
Valore hash calcolato per tutti i dati dello stream.
Vedi anche
- Typedef ArrayPtr
- Typedef SharedPtr
- Class Stream
- Class HashAlgorithm
- Namespace System::Security::Cryptography
- Library Aspose.Font for C++