In un'applicazione Rails 3.0 (Rubino 1.9.2) sto cercando di crittografare alcuni dati utilizzando qualcosa di simile:Come crittografare i dati in una stringa UTF-8 utilizzando OpenSSL :: Cipher?
cipher = OpenSSL::Cipher.new 'aes-256-cbc'
cipher.encrypt
cipher.key = cipher.random_key
cipher.iv = cipher.random_iv
encrypted = cipher.update 'most secret data in the world'
encrypted << cipher.final
che andranno in un database UTF-8. Il mio problema è che
> encrypted.encoding
=> #<Encoding:ASCII-8BIT>
> encrypted.encode 'utf-8'
Encoding::UndefinedConversionError: "\xF7" from ASCII-8BIT to UTF-8
Come posso ottenere una stringa crittografata UTF-8?
Grazie per questo !! – Brandon
'» encoded = Base64.encode64 ('Tromsø'). Encode ('utf-8') => "VHJvbXPDuA == \ n" »Base64.decode64 (encoded.encode ('ascii-8bit')) => "Troms \ xC3 \ xB8" ' – mhenrixon
Grazie, ho salvato la giornata! – ti6on