Search notes:

Oracle: V$ENCRYPTED_TABLESPACES

v$encrypted_tablespaces lists all currently encrypted tablespaces.
select
   ts#,
   encryptionalg,
   encryptedts,
   encryptedkey,
   masterkeyid,
-- --------------------------------------------------------------------------------------------------------
-- masterkeyid is in Base64 format. 
-- The following transformation returns the key a the format which can be used to
-- compare it to the wallet's ORACLE.SECURITY.DB.ENCRYPTION.MASTERKEY
--     (MOS Note 1228046.1)
   utl_raw.cast_to_varchar2(utl_encode.base64_encode('01'||substr(masterkeyid, 1, 4                  ))) ||
   utl_raw.cast_to_varchar2(utl_encode.base64_encode(      substr(masterkeyid, 5, length(masterkeyid))))     masterkey_, 
-- ------------------------------------------------------------------------------------------------------- 
   blocks_encrypted
   blocks_decrypted,
   key_version,
   status,
   ciphermode,
   con_id
from
   v$encrypted_tablespaces;

See also

v$encryption_wallet, v$encryptionkeys, v$client_secrets, v$database_key_info
v$tablespace
sys.enc$
Oracle Dynamic Performance Views

Index