crypt es un método de clase String en Ruby que se utiliza para devolver la string generada al llamar a la función de biblioteca estándar crypt(3) con str y salt_str.
Sintaxis: crypt(salt_str)-> new_str
Parámetros: aquí, str es la string dada y salt_str es el método salt for crypt especificado.
Ejemplo 1:
# Ruby program to demonstrate # the crypt method # Taking a string and # using the method str = "String Counting".crypt("$5$round=1000$salt$") puts str
Producción:
$5$round=1000$RCWssv3k7Wg.u6RVzghf9OFtZlR/7XBvVQ5TQL1ISfB
Ejemplo 2:
# Ruby program to demonstrate # the crypt method # Taking a string and # using the method str = "Ruby".crypt("$5$round=7845$salt$") puts str
Producción:
$5$round=7845$C4D7dWhlb2WnTJIQEmUH3ii.InZN59Az/yZnaMFh0c5
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA