2025-06-16 21:46:27 +05:00

11 lines
372 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Хеш строки
slug: общие-работа-с-текстом/хеш-строки
---
```bsl
Хеш = Новый ХешированиеДанных(ХешФункция.MD5);
Хеш.Добавить("НУЖНЫЙ ТЕКСТ");
ДД = Хеш.ХешСумма;
ХешСтрока = ПолучитьHexСтрокуИзДвоичныхДанных(ДД);
```