Displaying 15 results from an estimated 15 matches for "encryptor".
2010 Nov 04
1
Calling a method directly from a test => no method error
...sing the routines from Chapter 8 of "Security on Rails" and can''t
get the test to pass. I keep getting "no method error" for decrypt.
Can someone help me with the correct "address" for decrypt so I can
call it directly.
Here is the routine definition:
module Encryptor
module Routines
def decrypt(cipher_text, key, opts)
cipher = OpenSSL::Cipher::Cipher.new(algorithm(opts))
decoded_cipher_text = Base64.decode64(cipher_text)
#cipher.decrypt(key, decoded_cipher_text.slice!(0..15))
cipher.decrypt
cipher.pkcs5_keyivgen(key)
#...
2012 Jan 27
0
Warden - how to setup custom encryptor
I`m writting sinatra app and i would like to setup encryption in Warden
like i did it in devise when i used Rails.
module Devise
module Encryptors
class Md5 < Base
def self.digest(password, stretches, salt, pepper)
str = [password].flatten.compact.join
Digest::MD5.hexdigest(Digest::MD5.hexdigest(str))
end
end
end
end
Where I can setup this module ??
How to set Warden to use MD5 encryp...
2011 Oct 13
3
[LLVMdev] LLC ARM Backend maintainer
> The ARM Holdings emulator does this; I used it with great success to
> profile an Advanced Encryption Standard encryptor a while back.
It is indeed a useful piece of kit. We do a lot of our internal regression tests on it, and also run LLVM's regression tests every night on it (as well as PlumHall, EEMBC and SpecInt). Unfortunately it's not exactly software we can give away or give access to.
_______________...
2009 Feb 25
3
FLAC support for Android?
Thanks for the info, Dave. Speed is a very important feature, but
there might be some risk choosing the FFmpeg decoder. They've had
trouble with their encoder in the past, which tells me it's possible
your users might one day run into a valid FLAC that the FFmpeg
decoder won't handle correctly.
A better suggestion might be to start with libFLAC, optimize as
needed, and
2011 Oct 13
0
[LLVMdev] LLC ARM Backend maintainer
...e, Ste 215
West Lafayette, IN 47906
W: 765-889-4756 x2
C: 765-464-9893
jabbey at arxan.com<mailto:jabbey at arxan.com>
www.arxan.com
On Oct 13, 2011, at 2:11 PM, James Molloy wrote:
The ARM Holdings emulator does this; I used it with great success to
profile an Advanced Encryption Standard encryptor a while back.
It is indeed a useful piece of kit. We do a lot of our internal regression tests on it, and also run LLVM's regression tests every night on it (as well as PlumHall, EEMBC and SpecInt). Unfortunately it's not exactly software we can give away or give access to.
_______________...
2011 Oct 13
0
[LLVMdev] LLC ARM Backend maintainer
...the end of
the subroutine, or with the addition of a memory map that gives access
times for various kinds of memory (16-bit Flash or Dynamic RAM) you
can get cycle counts for the subrouine.
The ARM Holdings emulator does this; I used it with great success to
profile an Advanced Encryption Standard encryptor a while back.
Ever Faithful,
Don Quixote
--
Don Quixote de la Mancha
Dulcinea Technologies Corporation
Software of Elegance and Beauty
http://www.dulcineatech.com
quixote at dulcineatech.com
2013 Jan 07
9
Devise Admin View password
Hi Everyone
i am using devise for authentication for my app.
Is there any way, Admin user can view other users password as normal string.
Without storing there password as string in database?
Please advise.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2010 Aug 09
0
Devise :current_password validations and checking (how???)
...e my :current_password to the
params[:user][:current_password] I tried to submit in the form. Meaning
how can the devise check the submitted params[:user][:current_password]
to match and validate on the current_user.pasword
This is my code, i''m using HAML
I''m also using config.encryptor = :restful_authentication_sha1
since I migrated from auth_logic to devise authentication tool
"Views/Settings/change_password.haml" goes like this
***************************************************************
%aside#sidebar
%nav.leftbar
%ul
%li.pwd= link_to "Password&...
2011 Oct 13
1
[LLVMdev] LLC ARM Backend maintainer
...s that switch
the modes; this is called "Interworking". The regular way to return
from an instruction is to put the return address into register 15, but
the instruction BX (if I remember correctly) will both return from a
subroutine and switch the ISA.
I took advantage of this in my AES encryptor, which I wrote in tightly
hand-optimized assembly, by writing the less time-critical outer loops
in slower but more-compact Thumb code, with the more time-critical
inner loops being in the ARM ISA.
In some hopeful future day LLVM will be able to do this as well; if
you have a compilation unit that...
2011 Oct 13
6
[LLVMdev] LLC ARM Backend maintainer
Admittedly we're very interested in becoming ARM backend maintainers as our product heavily relies on LLVM.
However, we don't have testing resources to test both our product and LLVM on a host of target boards. We have some chumbys, beagleboards, iPhones, iPod Touches, tables, Android Phones, etc. And most of those are already booked solid with our own regression tests (most of which
2012 Oct 05
24
Building an On-Site and Off-Size ZFS server, replication question
Good morning.
I am in the process of planning a system which will have 2 ZFS servers, one
on site, one off site. The on site server will be used by workstations and
servers in house, and most of that will stay in house. There will, however,
be data i want backed up somewhere else, which is where the offsite server
comes in... This server will be sitting in a Data Center and will have some
storage
1998 Jun 29
2
Re: A switch? A router? What am I looking for??
At 01:59 PM 6/29/98 +0000, Kokoro Security Administrator wrote:
>Hello everyone -
>
>I am looking for the name of a piece of hardware, and don''t know what it
>is called. I am told that there exists such a thing (a switch? a router?
>a special hub?) that will only send me traffic that is destined for me.
simple definitions:
--router: looks at a layer 3 address (such as
2007 Apr 10
7
equalize / ecmp not working as expected in 2.6 vs 2.4
Hi,
With kernel 2.4 I was able to use equalize to send our outgoing packets to
two different routers (our isp supports this setup), like this:
ip route add default src ip.a.dd.rr equalize nexthop via <router1> weight 1
nexthop via <router2> weight 1
The two routes were used equally on a per packet basis, not per flow or per
cached route, but per packet, each line has 800k upload
2004 Jun 05
50
[Bug 877] ssh 3.8.1p1 client cannot disable encryption with "-c none"
http://bugzilla.mindrot.org/show_bug.cgi?id=877
Summary: ssh 3.8.1p1 client cannot disable encryption with "-c
none"
Product: Portable OpenSSH
Version: 3.8.1p1
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: ssh
AssignedTo:
1998 Jun 30
1
Patched Qpopper2.5 release Notification. (fwd)
...amples listed.
All the examples listed correspond to violations of (an implied) security
policy, *not* missing security in depth. I *like* security in depth. When
I have the luxury, I have one vendors' firewall on the perimeter, another
vendor's firewall for the interior, and specify file encryptors and
end-to-end encryption on administrative traffic. Belts and suspenders are
good things, when money/convenience is outweighed by the risk/value
computation.
What I'd like to point out (that is often missed) is that security
implementations must follow from the security policy -- not vice v...