예제 #1
0
 def __init__(self, obio):
     # type: (BIO) -> None
     BIO.__init__(self, _pyfree=1)
     self.obio = obio
     self.bio = m2.bio_new(m2.bio_f_cipher())
     self.closed = 0
예제 #2
0
 def __init__(self, obio):
     # type: (BIO) -> None
     super(CipherStream, self).__init__(self, _pyfree=1)
     self.obio = obio
     self.bio = m2.bio_new(m2.bio_f_cipher())
     self.closed = 0
예제 #3
0
파일: BIO.py 프로젝트: rodrigc/m2crypto
 def __init__(self, obio):
     BIO.__init__(self, _pyfree=1)
     self.obio = obio
     self.bio = m2.bio_new(m2.bio_f_cipher())
     self.closed = 0
예제 #4
0
파일: BIO.py 프로젝트: mcepl/M2Crypto
 def __init__(self, obio):
     # type: (BIO) -> None
     super(CipherStream, self).__init__(self, _pyfree=1)
     self.obio = obio
     self.bio = m2.bio_new(m2.bio_f_cipher())
     self.closed = 0
예제 #5
0
 def __init__(self, obio):
     BIO.__init__(self, _pyfree=1)
     self.obio = obio
     self.bio = m2.bio_new(m2.bio_f_cipher())
     self.closed = 0
예제 #6
0
#!/usr/bin/env python2.0

"""Demonstrates the use of m2.bio_set_mem_eof_return().
Copyright (c) 1999-2003 Ng Pheng Siong. All rights reserved."""

from M2Crypto import m2
m2.lib_init()

use_mem = 1

if use_mem:
    bio = m2.bio_new(m2.bio_s_mem())
else:
    bio = m2.bio_new_file('XXX', 'wb')
ciph = m2.bf_cbc()
filt = m2.bio_new(m2.bio_f_cipher())
m2.bio_set_cipher(filt, ciph, 'key', 'iv', 1)
m2.bio_push(filt, bio)
m2.bio_write(filt, '12345678901234567890')
m2.bio_flush(filt)
m2.bio_pop(filt)
m2.bio_free(filt)
if use_mem:
    m2.bio_set_mem_eof_return(bio, 0)
    xxx = m2.bio_read(bio, 100)
    print `xxx`, len(xxx)
m2.bio_free(bio)

if use_mem:
    bio = m2.bio_new(m2.bio_s_mem())
    m2.bio_write(bio, xxx)
예제 #7
0
파일: BIO.py 프로젝트: appknox/m2crypto
 def __init__(self, obio):
     # type: (BIO) -> None
     BIO.__init__(self, _pyfree=1)
     self.obio = obio
     self.bio = m2.bio_new(m2.bio_f_cipher())
     self.closed = 0