Analysis of Ruby encryption implementation code examples

Source: Internet
Author: User

Although the Ruby language is a simple programming language, it also has the function of program encryption. Here we will illustrate the Ruby encryption method with several code examples.

  • Ruby function pointer concepts
  • Ruby Rmagick Installation Guide
  • Ruby special syntax concepts
  • Example of Ruby code for getting the current class name
  • Ruby module OpenURI to get http/FTP address content

Ruby encryption-md5

  1. Require 'md5'
  2. Puts MD5.hexdigest ('')

Sha1 of Ruby Encryption

  1. Require 'digest/sha1'
  2. Puts Digest: SHA1.hexdigest ('')

Ruby-encrypted base64

  1. Require 'base64'
  2. Code = Base64.encode64 ('Allo ')
  3. Source = Base64.decode64 (code)

Uri of Ruby Encryption

  1. Src = 'abc encoded asdf'
  2. Code = URI. encode src
  3. Src = URI. decode code
  4. Puts code
  5. Puts src

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.