2012-06-14 12 views
21

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?

risposta

39

La soluzione è quello di convertire la stringa ASCII-8BIT a Base64 e quindi codificare in UTF-8.

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 

encoded = Base64.encode64(encrypted).encode('utf-8') 

volta persistito e recuperati dal database,

decoded = Base64.decode64 encoded.encode('ascii-8bit') 

e infine decifrare.


PS: Se siete curiosi:

cipher = OpenSSL::Cipher.new 'aes-256-cbc' 
cipher.decrypt 
cipher.key = random_key 
cipher.iv = random_iv 

decrypted = cipher.update encoded 
decrypted << cipher.final 

> decrypted 
=> 'most secret data in the world' 
+0

Grazie per questo !! – Brandon

+0

'» encoded = Base64.encode64 ('Tromsø'). Encode ('utf-8') => "VHJvbXPDuA == \ n" »Base64.decode64 (encoded.encode ('ascii-8bit')) => "Troms \ xC3 \ xB8" ' – mhenrixon

+0

Grazie, ho salvato la giornata! – ti6on

0

Credo che la soluzione migliore è utilizzare force_encoding trovato here.

> encrypted.encoding 
    => #<Encoding:ASCII-8BIT> 

> encrypted.force_encoding "utf-8" 

> encrypted.encoding 
    => #<Encoding:UTF-8> 
+4

'.encode' da ASCII-8BIT a UTF-8 non riesce, quindi' .force_encoding' sarà solo generare una sequenza di byte non valida. –