search for: aes_encrypt

Displaying 11 results from an estimated 11 matches for "aes_encrypt".

Did you mean: des_encrypt
2013 Feb 28
1
how to use before_filter to decrypt post data
hello, everybody. in ror, we can add a after_filter to a controller. def aes_encrypt response.body = AesHelper.aes_encrypt(response.body) end after_filter :aes_encrypt and all action''s repsonse int the controller can be encrypt. and my question is , how to decrypt data use before_filter, or anything else. ex: i want to post json data to /usr/register, the...
2006 Mar 16
1
sql functions in cru ( not d )
...them directly in the database. There are several ways that it could be done. I could make an Encrypter class and use before_update, etc. Or I could set up an updatable VIEW in mySql. (I guess triggers might be another possibility.) However, what I would really LIKE to do is use the handy AES_ENCRYPT and AES_DECRYPT functions in mySql. If I were doing this with straight sql, I would just use INSERT INTO myTable VALUES( null, ''user name'', AES_ENCRYPT (''user_email'' , ''password'' ). Since ActiveRecord handles all this for me, it is not...
2008 Jan 29
0
Available: Multi-threaded AES-CTR Cipher
...al CPU resources exist. In order to open up this bottleneck we've developed a multi-threaded version of the AES-CTR cipher. Unlike CBC mode, since there is no dependency between cipher blocks in CTR mode we parallelize cipher block operations among multiple threads. Furthermore, since the AES_encrypt operations do not depend on the data to be ciphered we pre-generate the effective keystream. The main thread still handles the packetization, MAC computation, and associated I/O but the computationally expensive AES_encrypt operations are offloaded to one or more additional cores. In our tests...
2012 Apr 28
2
help with AES_DECRYPT and password lookup - mysql password_query
Hello- Sorry if this is a noob question, but I cant seem to get my password_query to work with dovecot + mysql. Im using 'Password verification by SQL server' at: http://wiki2.dovecot.org/AuthDatabase/SQL trying to modify it to work with my encrypted passwords in the DB. Im using the following which isnt working: password_query = SELECT NULL AS password, \ 'Y' as
2007 Aug 07
4
Howto use ENCRYPT() function of MySQL
Hi all, I''m working actually on a Control Panel to manage a mail system. Until now, when I create a new mail account, i do an insert and protect the pasword with ENCRYPT(''password'') function. I can''t change the method to SHA1 or MD5 because the SMTPd a IMAPd will not support it. Can you explain me how to force RoR to rewrite the INSERT SQL query and use
2017 Apr 30
2
most secure password scheme
Hello, Thanks for the explanation. So should I go with SSHA512 or SHA512-CRYPT? From your explanation i'm interpreting to mean that SHA512-CRYPT also salts. This is for storing in a mysql database. Also, what should the password field length and type be set for? Currently it's varchar(128) Thanks. Dave. On 4/29/17, Aki Tuomi <aki.tuomi at dovecot.fi> wrote: > >> On April
2014 Mar 27
1
Asterisk SSL support broken with update from openssl-1.0.0 to 1.0.1e, recompiling does *not* help
...do not see anything in the Asterisk changelog that could possibly cause the call to be skipped. I see nothing out of the ordinary when configuring Asterisk using the updated openssl: checking sqlite3.h usability... yes checking sqlite3.h presence... yes checking for sqlite3.h... yes checking for AES_encrypt in -lcrypto... yes checking openssl/aes.h usability... yes checking openssl/aes.h presence... yes checking for openssl/aes.h... yes checking for SSL_connect in -lssl... yes checking openssl/ssl.h usability... yes checking openssl/ssl.h presence... yes checking for openssl/ssl.h... yes checking osp/...
2010 Mar 19
5
Encrypt/decrypt in R
Hi all, Does any one know of any encryption/decryption algorithms in R? I'm not looking for anything robust - I want some way of printing output to the screen that the user can't read immediately, but can decrypt a little later. The main thing I don't want to the user to see is a number, so (e.g.) ROT13 isn't appropriate. Hadley -- Assistant Professor / Dobelman Family Junior
2009 Apr 26
4
1.6.1: menuselect has problems with x86_64 ??
1.6.1 svn 190575: CC="cc" CXX="g++" LD="" AR="" RANLIB="" CFLAGS="" make -C menuselect CONFIGURE_SILENT="--silent" menuselect make[1]: Entering directory `/home/asterisk/rpmbuild/BUILD/asterisk-1.6.1/menuselect' gcc -m64 -march=native -mtune=native -floop-interchange -floop-strip-mine -floop-block -c -o
2008 Jul 06
11
OpenSSH 5.1: call for testing
Hi, OpenSSH 5.1 is almost ready for release, so we would appreciate testing on as many platforms and systems as possible. This release is one of the biggest in recent years, with two hackathons' worth of improvements and fixes for some of our most recalcitrant bugs. Snapshot releases for portable OpenSSH are available from http://www.mindrot.org/openssh_snap/ The OpenBSD version is
2020 Feb 04
0
Always Be Conferencing v16e - pure AEL-based dial plan solution
...return; } if( ${LEN(${lat_})} == 0 || ${LEN(${lon_})} == 0 ) { // Must have co-ordinates. // TODO: maybe use defaults of the PBX return; } if( ${LEN(${elv_})} == 0 ) { // Assume a mile high. :) Set(elv_=5280ft); } Set(LOCAL(egps)=${AES_ENCRYPT(${abckey},${lat_} ${lon_} ${elv_})}); Set(DB(pngnpbx/abc/egps/${ext_})=${egps}); return; } /* The "polo" macro is used to retrieve current phone GPS position * as it is stored in the internal Asterisk DB. They must have called * out to "marco" sometime before "po...