Anindya Maiti 3 months ago
parent
commit
d0cf047d44
  1. 3
      hashing/hashing-examples.go

3
hashing/hashing-examples.go

@ -7,7 +7,8 @@ import (
)
func main() {
s := "Hello"
s := "Hello World"
//s := "In the heart of a bustling city, a small, unassuming cafe stood tucked between towering skyscrapers. Its walls, a mosaic of colorful tiles, held stories of a thousand meetings, whispered secrets, and shared laughter. Inside, the aroma of freshly ground coffee mingled with the scent of old books, creating an ambiance of warmth and nostalgia. Each table bore the marks of countless cups and conversations, and the worn-out sofa in the corner was a silent testament to many a weary traveler finding solace in its embrace. Outside, the city rushed by in a blur of lights and sounds, but within the cafe's walls, time seemed to slow down, inviting passersby to pause and savor the small joys of life. ~ChatGPT"
sha256 := sha256.Sum256([]byte(s))
md5 := md5.Sum([]byte(s))

Loading…
Cancel
Save