SecItem.type SecItem.len, SecItem.data PK11SymKey.key_data, PK11SymKey.key_length, PK11SymKey.slot create_context_by_sym_key param_from_iv generate_new_param get_iv_length get_block_size get_pad_mechanism * SecItem's now support indexing and slicing on their data * Clean up parsing and parameter validation of variable arg functions git-svn-id: svn://10.0.0.236/trunk@258428 18797224-902f-48f8-a5cc-f745e15eee43
69 lines
2.7 KiB
Plaintext
69 lines
2.7 KiB
Plaintext
2009-09-21 John Dennis <jdennis@redhat.com> 0.8
|
|
* The following methods, properties and functions were added:
|
|
SecItem.type SecItem.len, SecItem.data
|
|
PK11SymKey.key_data, PK11SymKey.key_length, PK11SymKey.slot
|
|
create_context_by_sym_key
|
|
param_from_iv
|
|
generate_new_param
|
|
get_iv_length
|
|
get_block_size
|
|
get_pad_mechanism
|
|
* SecItem's now support indexing and slicing on their data
|
|
* Clean up parsing and parameter validation of variable arg functions
|
|
|
|
2009-09-18 John Dennis <jdennis@redhat.com> 0.7
|
|
* add support for symmetric encryption/decryption
|
|
more support for digests (hashes)
|
|
|
|
The following classes were added:
|
|
PK11SymKey PK11Context
|
|
|
|
The following methods and functions were added:
|
|
get_best_wrap_mechanism get_best_key_length
|
|
key_gen derive
|
|
get_key_length digest_key
|
|
clone_context digest_begin
|
|
digest_op cipher_op
|
|
finalize digest_final
|
|
read_hex hash_buf
|
|
sec_oid_tag_str sec_oid_tag_name
|
|
sec_oid_tag_from_name key_mechanism_type_name
|
|
key_mechanism_type_from_name pk11_attribute_type_name
|
|
pk11_attribute_type_from_name get_best_slot
|
|
get_internal_key_slot create_context_by_sym_key
|
|
import_sym_key create_digest_context
|
|
param_from_iv param_from_algid
|
|
generate_new_param algtag_to_mechanism
|
|
mechanism_to_algtag
|
|
|
|
The following files were added:
|
|
test/cipher_test.py test/digest_test.py
|
|
|
|
2009-07-08 John Dennis <jdennis@redhat.com> 0.6
|
|
* fix bug #510343 client_auth_data_callback seg faults if False
|
|
is returned from callback
|
|
|
|
2009-07-01 John Dennis <jdennis@redhat.com> 0.5
|
|
* restore ssl.nss_init and ssl.nss_shutdown but make them deprecated
|
|
add __version__ string to nss module
|
|
|
|
2009-06-30 John Dennis <jdennis@redhat.com> 0.4
|
|
* add binding for NSS_NoDB_Init(), bug #509002
|
|
move nss_init and nss_shutdown from ssl module to nss module
|
|
|
|
2009-06-04 John Dennis <jdennis@redhat.com> 0.3
|
|
|
|
* import to Mozilla CVS, tweak directory layout
|
|
|
|
2009-05-21 John Dennis <jdennis@redhat.com> 0.2
|
|
* apply patch from bug #472805, (Miloslav Trmač)
|
|
Don't allow closing a socket twice, that causes crashes.
|
|
New function nss.io.Socket.new_socket_pair()
|
|
New function nss.io.Socket.poll()
|
|
New function nss.io.Socket.import_tcp_socket()
|
|
New method nss.nss.Certificate.get_subject_common_name()
|
|
New function nss.nss.generate_random()
|
|
Fix return value creation in SSLSocket.get_security_status
|
|
New function nss.ssl.SSLSocket.import_tcp_socket()
|
|
Convert licensing to MPL tri-license
|